Skip to content

Commit

Permalink
refactor: Ran black formatter
Browse files Browse the repository at this point in the history
  • Loading branch information
TreyWW committed Mar 29, 2024
1 parent 2d0d036 commit 60f360e
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 9 deletions.
4 changes: 2 additions & 2 deletions components/components.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,8 @@
import logging

import logging
logger = logging.getLogger(__name__)

logger = logging.getLogger(__name__)


# Your base component class
Expand Down Expand Up @@ -70,4 +70,4 @@ def class_decorator(cls):
all_components = [f"{a} {b}" for a, b in zip(list_of_components_registered, list_of_created_classes)]

logging.debug(f"[BACKEND] Registered GLOBAL components: {all_components}")
logging.debug(f"[BACKEND] Registered component usable names: {list_of_components_registered}")
logging.debug(f"[BACKEND] Registered component usable names: {list_of_components_registered}")
9 changes: 2 additions & 7 deletions settings/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -297,16 +297,11 @@ class CustomPublicMediaStorage(S3Storage):
"style": "{",
},
},
"handlers": {
"console": {
"class": "logging.StreamHandler",
"formatter": "simple"
}
},
"handlers": {"console": {"class": "logging.StreamHandler", "formatter": "simple"}},
"root": {
"handlers": ["console"],
"level": get_var("DJANGO_LOG_LEVEL", default="INFO"),
}
},
}


Expand Down

0 comments on commit 60f360e

Please sign in to comment.