Skip to content

Commit

Permalink
HOTFIX: flake8
Browse files Browse the repository at this point in the history
  • Loading branch information
Lnk2past committed Sep 22, 2021
1 parent 4d3a40d commit 9cf6d17
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion contest/TestCase.py
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ def execute(self):
diff = ImageChops.difference(f_image, t_image)
if diff.getbbox():
errors += 1
except FileNotFoundError as e:
except FileNotFoundError:
logger.critical(f'FAILURE:\n Could not find output file {ofstream["test-file"]}', extra=logger_format_fields)
errors += 1
for extra_test in self.extra_tests:
Expand Down
2 changes: 1 addition & 1 deletion contest/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'contest'
__description__ = 'A console application tester.'
__url__ = 'https://github.com/Lnk2past/contest'
__version__ = '2021.9.4'
__version__ = '2021.9.5'
__author__ = 'Lnk2past'
__license__ = 'MIT'

0 comments on commit 9cf6d17

Please sign in to comment.