summaryrefslogtreecommitdiff
path: root/doc/data/messages/w/wrong-exception-operation
diff options
context:
space:
mode:
Diffstat (limited to 'doc/data/messages/w/wrong-exception-operation')
-rw-r--r--doc/data/messages/w/wrong-exception-operation/bad.py4
-rw-r--r--doc/data/messages/w/wrong-exception-operation/good.py2
2 files changed, 3 insertions, 3 deletions
diff --git a/doc/data/messages/w/wrong-exception-operation/bad.py b/doc/data/messages/w/wrong-exception-operation/bad.py
index 20fcc2aab..e4aff5d8b 100644
--- a/doc/data/messages/w/wrong-exception-operation/bad.py
+++ b/doc/data/messages/w/wrong-exception-operation/bad.py
@@ -1,4 +1,4 @@
try:
- 1/0
-except (ValueError + TypeError): # [wrong-exception-operation]
+ 1 / 0
+except ValueError + TypeError: # [wrong-exception-operation]
pass
diff --git a/doc/data/messages/w/wrong-exception-operation/good.py b/doc/data/messages/w/wrong-exception-operation/good.py
index 4171dbb60..b5170dd0e 100644
--- a/doc/data/messages/w/wrong-exception-operation/good.py
+++ b/doc/data/messages/w/wrong-exception-operation/good.py
@@ -1,4 +1,4 @@
try:
- 1/0
+ 1 / 0
except (ValueError, TypeError):
pass