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
-1
View File
@@ -1,6 +1,5 @@
from typing import Any, Generic, Optional, TypeVar, get_args, get_origin
_T = TypeVar("_T")