Skip to content

Commit e15423e

Browse files
committed
get rid of the very last bare-except
1 parent 3daf182 commit e15423e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

effect/_utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def wraps_decorator(wrapper):
1717
wrapper.__doc__ = original.__doc__
1818
wrapper.__dict__.update(original.__dict__)
1919
wrapper.__module__ = original.__module__
20-
except:
20+
except Exception:
2121
pass
2222
return wrapper
2323

0 commit comments

Comments
 (0)