diff --git a/pyinaturalist/docs/forge.py b/pyinaturalist/docs/forge.py index c1eeff13..bb7e2c4d 100644 --- a/pyinaturalist/docs/forge.py +++ b/pyinaturalist/docs/forge.py @@ -29,14 +29,13 @@ SOFTWARE. """ +import asyncio import builtins import collections import functools import inspect import types import typing -import asyncio - # Convenience _TYPE_FP_CTX_CALLABLE = typing.Callable[ diff --git a/pyproject.toml b/pyproject.toml index 4123909b..11b1ebf4 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -106,12 +106,6 @@ exclude_lines = [ 'if TYPE_CHECKING:', ] -[tool.isort] -profile = 'black' -line_length = 100 -skip_gitignore = true -known_first_party = ['test'] - [tool.mypy] ignore_missing_imports = true pretty = true @@ -139,7 +133,7 @@ exclude = ['examples/', 'test/sample_data/'] quote-style = 'single' [tool.ruff.lint] -select = ['B', 'C4', 'C90', 'E', 'F'] +select = ['B', 'C4', 'C90', 'E', 'F', 'I'] [tool.ruff.lint.isort] known-first-party = ['test'] diff --git a/test/test_models.py b/test/test_models.py index a0483b54..ac4441a3 100644 --- a/test/test_models.py +++ b/test/test_models.py @@ -33,7 +33,6 @@ from test.conftest import sample_data_path from test.sample_data import * - # Base # --------------------