Skip to content

Commit

Permalink
style: fix typo in debug log
Browse files Browse the repository at this point in the history
  • Loading branch information
Michele-Alberti committed Jan 4, 2025
1 parent 9b351a4 commit 5273194
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dlunch/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ def create_app(config: DictConfig) -> pn.Template:
# graphic element that require the Person class has to be instantiated
# by a dedicated function
# Create person instance, widget and column
log.debug("instantiate person class and graphic graphic interface")
log.debug("instantiate person class and graphic interface")
person = gui.Person(config, name="User")
gi = gui.GraphicInterface(
config=config,
Expand Down
2 changes: 1 addition & 1 deletion dlunch/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -1012,7 +1012,7 @@ def _create_database_with_retries(config: DictConfig) -> None:

# If requested add users for basic auth (admin and guest)
if add_basic_auth_users:
log.debug("add basic auth standard users")
log.debug("add basic auth standard users (if missing)")
# If no user exist create the default admin
session = create_session(config)

Expand Down

0 comments on commit 5273194

Please sign in to comment.