We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 07275f9 commit 354de65Copy full SHA for 354de65
1 file changed
utils/settings.py
@@ -138,10 +138,6 @@ def check_toml(template_file: str, config_file: str):
138
return config
139
140
141
-if __name__ == "__main__":
142
- directory = Path().absolute()
143
- check_toml(f"{directory}/utils/.config.template.toml", "config.toml")
144
-
145
146
def get_config() -> Dict[str, Any]:
147
directory = Path().absolute()
@@ -161,3 +157,7 @@ def get_config() -> Dict[str, Any]:
161
157
)
162
158
sys.exit()
163
159
160
+
+if __name__ == "__main__":
+ directory = Path().absolute()
+ check_toml(f"{directory}/utils/.config.template.toml", "config.toml")
0 commit comments