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
ok so I tried to create a config_local.py file to change max_traverse_depth, but it kept failing to read. I think this has to do with config.py trying to do from .config_local import * rather than from config_local import *. Though tangos doesn’t output this, if I tried this line by itself in my working directory with config_local.py I get the following error
No module named '__main__.config_local'; '__main__' is not a package
This seems to work if I just remove the . in that import line in config.py . Happy to make a pull request if this seems necessary. Just wanted to check first to see if I’m just doing something completely wrong here
The text was updated successfully, but these errors were encountered:
ok so I tried to create a config_local.py file to change max_traverse_depth, but it kept failing to read. I think this has to do with config.py trying to do
from .config_local import *
ratherthan from config_local import *
. Though tangos doesn’t output this, if I tried this line by itself in my working directory with config_local.py I get the following errorNo module named '__main__.config_local'; '__main__' is not a package
This seems to work if I just remove the . in that import line in
config.py
. Happy to make a pull request if this seems necessary. Just wanted to check first to see if I’m just doing something completely wrong hereThe text was updated successfully, but these errors were encountered: