1
0
mirror of https://github.com/kevin1024/vcrpy.git synced 2025-12-09 17:15:35 +00:00

Fix flake8 in python3

This commit is contained in:
jxltom
2018-11-14 10:27:38 +08:00
committed by GitHub
parent 6c166482d9
commit c3705dae9f

View File

@@ -25,5 +25,5 @@ def serialize(cassette_dict):
original.end,
original.args[-1] + error_message
)
except TypeError as original: # py3
except TypeError: # py3
raise TypeError(error_message)