Index: flake8-eyeo/tests/A206.py |
=================================================================== |
--- a/flake8-eyeo/tests/A206.py |
+++ b/flake8-eyeo/tests/A206.py |
@@ -21,7 +21,7 @@ |
def else_after_return_in_except(): |
try: |
noop() |
- except: |
+ except Exception: |
return |
else: |
# A206 |