Skip to content

Commit

Permalink
ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
reinout committed Apr 3, 2024
1 parent 6071474 commit 2621acc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brostar_api/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
DEBUG_ENV = os.getenv("DEBUG", default="true")

# Convert the environment variable (which is a string) to a boolean.
DEBUG = (DEBUG_ENV.lower() == "true") # True is the default
DEBUG = DEBUG_ENV.lower() == "true" # True is the default


TIME_ZONE = "CET"
Expand Down

0 comments on commit 2621acc

Please sign in to comment.