Ran black on sources, add black config
This commit is contained in:
parent
abe4b1e4ee
commit
0df87037e7
32 changed files with 1031 additions and 232 deletions
|
|
@ -450,10 +450,14 @@ def set_trace(term_size=(140, 80), debugger="auto"):
|
|||
# Stopped at breakpoint. Press 'n' to continue into the code.
|
||||
dbg.set_trace()
|
||||
|
||||
|
||||
# initialize the doc string
|
||||
global __doc__
|
||||
__doc__ = DOCSTRING.format(
|
||||
"\n- " + "\n- ".join(
|
||||
f"evennia.{key}" for key in sorted(globals())
|
||||
if not key.startswith("_")
|
||||
and key not in ("DOCSTRING", )))
|
||||
"\n- "
|
||||
+ "\n- ".join(
|
||||
f"evennia.{key}"
|
||||
for key in sorted(globals())
|
||||
if not key.startswith("_") and key not in ("DOCSTRING",)
|
||||
)
|
||||
)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue