Revert "chore: pre-commit now needs rich types"

This reverts commit bc60855b93.
This commit is contained in:
Matthias
2024-07-07 15:10:33 +02:00
parent 8c807f00bb
commit 483a829d0e
2 changed files with 1 additions and 4 deletions

View File

@@ -18,9 +18,7 @@ with require.open("r") as rfile:
# Extract types only
type_reqs = [
r.strip("\n")
for r in requirements
if r.startswith("types-") or r.startswith("SQLAlchemy") or r.startswith("rich")
r.strip("\n") for r in requirements if r.startswith("types-") or r.startswith("SQLAlchemy")
]
with pre_commit_file.open("r") as file: