summaryrefslogtreecommitdiff
path: root/pysquaredeal.py
diff options
context:
space:
mode:
authoremkael <emkael@tlen.pl>2024-02-12 23:48:38 +0100
committeremkael <emkael@tlen.pl>2024-02-12 23:48:38 +0100
commit5caef6f282dd06719fce3b02bd6ceadd7b5bfcd1 (patch)
tree561c23db8a51baec0bb9c0460774fc76d335124a /pysquaredeal.py
parent67b6eea3a81e5d78fc88c541af66ee713ec97fa1 (diff)
Method parameters done properly
Diffstat (limited to 'pysquaredeal.py')
-rw-r--r--pysquaredeal.py2
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))