Skip to content

Commit

Permalink
Bugfix; strict unsupported by python 3.7-3.9
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiocorreia committed Jul 14, 2022
1 parent fa43dd1 commit a8a9387
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion panflute/containers.py
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ def __eq__(self, other):
return False
if len(self.list) != len(other.list):
return False
for x, y in zip(self.list, other.list, strict=True):
for x, y in zip(self.list, other.list): # , strict=True
if x != y:
return False
return True
Expand Down
2 changes: 1 addition & 1 deletion panflute/version.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
Panflute version
"""

__version__ = '2.2.2'
__version__ = '2.2.3'

0 comments on commit a8a9387

Please sign in to comment.