fix: script looking for config.yml
in CWD
This commit is contained in:
parent
44c9014417
commit
9f8df6e227
1 changed files with 1 additions and 1 deletions
|
@ -19,7 +19,7 @@ class InvalidConfigurationError(RuntimeError):
|
||||||
|
|
||||||
|
|
||||||
def main():
|
def main():
|
||||||
path_to_config_file = Path("config.yml").resolve()
|
path_to_config_file = Path(__file__).parent / "config.yml"
|
||||||
|
|
||||||
# Check if config file exists
|
# Check if config file exists
|
||||||
if not path_to_config_file.is_file():
|
if not path_to_config_file.is_file():
|
||||||
|
|
Loading…
Add table
Reference in a new issue