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

19 lines
333 B
Python

"""Test: imports within `ModuleNotFoundError` and `ImportError` handlers."""
def module_not_found_error():
try:
import orjson
return True
except ModuleNotFoundError:
return False
def import_error():
try:
import orjson
return True
except ImportError:
return False