Skip to content

Commit

Permalink
Fix Mypy linting error
Browse files Browse the repository at this point in the history
  • Loading branch information
epicserve committed Nov 11, 2023
1 parent 97f2a44 commit 3063d78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion config/settings/_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,7 @@
STATIC_ROOT = BASE_DIR.joinpath("collected_static")
MEDIA_ROOT = PUBLIC_ROOT.joinpath("media")
PUBLIC_STATIC = PUBLIC_ROOT.joinpath("static")
STATICFILES_DIRS = [PUBLIC_STATIC]
STATICFILES_DIRS = [str(PUBLIC_STATIC)]
MEDIA_URL = "/public/media/"
STATIC_URL = "/public/static/"

Expand Down

0 comments on commit 3063d78

Please sign in to comment.