Commit ed995b747a6ff0676a09f06db3a536aef5a39be7
1 parent
1b8059fc
Exists in
master
and in
31 other branches
Removed return before load settings.d
Showing
1 changed file
with
0 additions
and
1 deletions
Show diff stats
colab/utils/conf.py
... | ... | @@ -62,7 +62,6 @@ def load_py_settings(): |
62 | 62 | # Try to read settings from settings.d |
63 | 63 | |
64 | 64 | if os.path.exists(settings_dir): |
65 | - return py_settings | |
66 | 65 | for file_name in os.listdir(settings_dir): |
67 | 66 | if file_name.endswith('.py'): |
68 | 67 | file_module = file_name.split('.')[0] | ... | ... |