diff options
author | emkael <emkael@tlen.pl> | 2019-08-01 14:16:52 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2019-08-01 14:19:26 +0200 |
commit | 2cf067473e78844aa616de98bcf0cfcadada2431 (patch) | |
tree | d28970628cd8b4ad0b07607606bf498d97377294 /dealconvert/formats/stdout.py | |
parent | 05d8c2a8b6801533144e1c0aa7e550ec44e0d946 (diff) |
DD hand analysis optional in API version
Fixes #3
Diffstat (limited to 'dealconvert/formats/stdout.py')
-rw-r--r-- | dealconvert/formats/stdout.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dealconvert/formats/stdout.py b/dealconvert/formats/stdout.py index b9df341..9725c06 100644 --- a/dealconvert/formats/stdout.py +++ b/dealconvert/formats/stdout.py @@ -9,7 +9,7 @@ class STDOUTFormat(DealFormat): def parse(self, input_file): return [] - def output(self, output_file, deal): + def output(self, output_file, deal, analyze=False): width = 9 for board in deal: lines = [] |