Run black reformatter on code

This commit is contained in:
Griatch 2022-02-08 13:03:52 +01:00
parent 4582eb4085
commit bd3e31bf3c
178 changed files with 4511 additions and 3385 deletions

View file

@ -19,6 +19,7 @@ class Command(BaseCommand):
here. Without setting one, the parent's docstring will show (like now).
"""
# Each Command class implements the following methods, called in this order
# (only func() is actually required):
#

View file

@ -157,6 +157,6 @@ class Object(DefaultObject):
at_say(speaker, message) - by default, called if an object inside this
object speaks
"""
"""
pass

View file

@ -13,6 +13,7 @@ Search the Django documentation for "URL dispatcher" for more help.
"""
from django.urls import path, include
# default evennia patterns
from evennia.web.urls import urlpatterns as evennia_default_urlpatterns
@ -24,7 +25,6 @@ urlpatterns = [
path("webclient/", include("web.webclient.urls")),
# web admin
path("admin/", include("web.admin.urls")),
# add any extra urls here:
# path("mypath/", include("path.to.my.urls.file")),
]

View file

@ -27,7 +27,7 @@ Each dict is on the form
HELP_ENTRY_DICTS = [
{
"key": "evennia",
"aliases": ['ev'],
"aliases": ["ev"],
"category": "General",
"locks": "read:perm(Developer)",
"text": """
@ -51,7 +51,7 @@ HELP_ENTRY_DICTS = [
There is also a discord channel you can find from the sidebard on evennia.com.
"""
""",
},
{
"key": "building",
@ -60,6 +60,6 @@ HELP_ENTRY_DICTS = [
Evennia comes with a bunch of default building commands. You can
find a building tutorial in the evennia documentation.
"""
}
""",
},
]