6 lines
101 B
Python
6 lines
101 B
Python
# pylint: disable=missing-docstring, import-error
|
|
|
|
try:
|
|
1 + "2"
|
|
except: # [bare-except]
|
|
pass
|