Skip to content

Commit

Permalink
Merge pull request #22 from adocquin/fix/config_path
Browse files Browse the repository at this point in the history
fix: Config file path fix
  • Loading branch information
adocquin authored May 9, 2022
2 parents 8be0ac7 + 09adff5 commit 90d4314
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

if __name__ == "__main__":
# Get parameters from configuration file.
current_directory: str = os.getcwd()
current_directory: str = os.path.dirname(os.path.realpath(__file__))
config_file: str = current_directory + "/config.yaml"
config: Config = Config(config_file)
# Initialize the KrakenAPI object.
Expand Down

0 comments on commit 90d4314

Please sign in to comment.