diff options
author | syn <isaqtm@gmail.com> | 2021-03-10 13:50:14 +0300 |
---|---|---|
committer | syn <isaqtm@gmail.com> | 2021-03-10 13:50:14 +0300 |
commit | b2330e3457abb2671ac46738c999b8c7432e0200 (patch) | |
tree | ce56c26be68a3c06166f540e6b57d715cdaf941f /back/config.py | |
parent | f004f33dbf3fc3095e3caf575b9847b0180beca8 (diff) | |
download | upnet-b2330e3457abb2671ac46738c999b8c7432e0200.tar.gz |
black
Diffstat (limited to 'back/config.py')
-rw-r--r-- | back/config.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/back/config.py b/back/config.py index 9c5b6fd..367e24f 100644 --- a/back/config.py +++ b/back/config.py @@ -4,11 +4,11 @@ import sys modpath = __file__ # Turn pyc files into py files if we can -if modpath.endswith('.pyc') and os.path.exists(modpath[:-1]): +if modpath.endswith(".pyc") and os.path.exists(modpath[:-1]): modpath = modpath[:-1] # Sort out symlinks APP_DIR = os.path.realpath(os.path.dirname(modpath)) -REDIS_HOST = 'localhost' +REDIS_HOST = "localhost" debug = True |