Skip to content

Commit 9620c42

Browse files
committed
pep8
1 parent 388577b commit 9620c42

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/_test_tools.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ def _read_file(path: Optional[Path]) -> str:
3131
try:
3232
with open(path, 'r') as f:
3333
return f.read()
34-
except FileNotFoundError as ex:
34+
except FileNotFoundError:
3535
return '<missing>'
3636
except Exception as ex:
3737
return f'<error: {ex}>'

0 commit comments

Comments
 (0)