diff options
author | emkael <emkael@tlen.pl> | 2024-02-12 23:48:38 +0100 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2024-02-12 23:48:38 +0100 |
commit | 5caef6f282dd06719fce3b02bd6ceadd7b5bfcd1 (patch) | |
tree | 561c23db8a51baec0bb9c0460774fc76d335124a /pysquaredeal.py | |
parent | 67b6eea3a81e5d78fc88c541af66ee713ec97fa1 (diff) |
Method parameters done properly
Diffstat (limited to 'pysquaredeal.py')
-rw-r--r-- | pysquaredeal.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pysquaredeal.py b/pysquaredeal.py index fb57c59..12e5dc6 100644 --- a/pysquaredeal.py +++ b/pysquaredeal.py @@ -44,5 +44,5 @@ arguments = argparser.parse_args() SquareDeal.BIGDEALX_PATH = arguments.bigdealx_path -sq = SquareDeal() +sq = SquareDeal(arguments.sqd_file, sqk_file=arguments.sqk_file) getattr(sq, arguments.command)(**vars(arguments)) |