Skip to content

Commit

Permalink
Disable deprecated pytz usage in local settings
Browse files Browse the repository at this point in the history
This update sets USE_DEPRECATED_PYTZ to False in the local settings file, indicating that the application should not use the deprecated pytz library. This change ensures compatibility with future updates and promotes using more modern timezone handling libraries.
  • Loading branch information
hareshkainthdbt committed Dec 6, 2024
1 parent afee5d4 commit b320d7e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions fbr/config/settings/local.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,6 @@
"cache",
]

USE_DEPRECATED_PYTZ = True

INSTALLED_APPS = BASE_APPS + INSTALLED_APPS # noqa

0 comments on commit b320d7e

Please sign in to comment.