diff options
author | emkael <emkael@tlen.pl> | 2020-10-20 15:23:10 +0200 |
---|---|---|
committer | emkael <emkael@tlen.pl> | 2020-10-20 15:23:10 +0200 |
commit | 5da79691092041d7291fc8534d4729938981aa4a (patch) | |
tree | a6cac7642024db971240a4ab2e2cc1cc332e557a /dealconvert/formats/dge.py | |
parent | d833d89ade81fd72efb76fb796cd5073e4e7c221 (diff) |
Python3 compatibility
Fixes #1
Diffstat (limited to 'dealconvert/formats/dge.py')
-rw-r--r-- | dealconvert/formats/dge.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/dealconvert/formats/dge.py b/dealconvert/formats/dge.py index d0a4c46..d180d33 100644 --- a/dealconvert/formats/dge.py +++ b/dealconvert/formats/dge.py @@ -13,7 +13,7 @@ class DGEFormat(DealFormat): } def suit_indicator(self, the_suit): - for indicator, suit in self.suits.iteritems(): + for indicator, suit in self.suits.items(): if suit == the_suit: return indicator return None |