ruff/crates/ruff_linter/resources/test/fixtures/flake8_bugbear/B013.py
2023-09-20 08:38:27 +02:00

14 lines
252 B
Python

retriable_exceptions = (FileExistsError, FileNotFoundError)
try:
pass
except (ValueError,):
pass
except AttributeError:
pass
except (ImportError, TypeError):
pass
except (*retriable_exceptions,):
pass
except(ValueError,):
pass