Add isort and ruff as dev dependencies;

 remove `flake8` dependency (replaced by `ruff`);
change `lint.sh` script to use `isort`, `ruff`, and `black`
This commit is contained in:
2023-03-10 16:57:26 +01:00
parent 601fee0bfc
commit 25cbe8de4b
7 changed files with 47 additions and 13 deletions

View File

@ -1,6 +1,5 @@
from typing import Any, Generic, Optional, TypeVar, get_args, get_origin
_T = TypeVar("_T")

View File

@ -4,7 +4,6 @@ from typing_extensions import ParamSpec
from marshmallow.decorators import post_load as _post_load
_R = TypeVar("_R")
_P = ParamSpec("_P")