You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
A clear and concise description of what the bug is.
Line 71 in dj_config.py has if os.path(filename).exists() which makes a call on the os.path module and will return in an error.
I changed my local file to be 'if os.path.exists(filename)' which then worked and is in accordance with the os.path documentation
Trying to set up a new dj_config file resulted in the error when following the guide set in notebook: 00_Setup.ipynb when trying to do python config/dj_config.py ametzger for me.
Should connect to dj and then ask for password which it did when I made the changes above
The text was updated successfully, but these errors were encountered:
Describe the bug
A clear and concise description of what the bug is.
Line 71 in dj_config.py has
if os.path(filename).exists()
which makes a call on the os.path module and will return in an error.I changed my local file to be 'if os.path.exists(filename)' which then worked and is in accordance with the os.path documentation
Trying to set up a new dj_config file resulted in the error when following the guide set in notebook: 00_Setup.ipynb when trying to do
python config/dj_config.py ametzger
for me.Should connect to dj and then ask for password which it did when I made the changes above
The text was updated successfully, but these errors were encountered: