fix: add types-requests dev dependency to resolve mypy import-untyped error

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
Justin Bollinger
2026-02-17 15:21:07 -05:00
parent 79e3c0f6e9
commit a53ed293b6

View File

@@ -36,6 +36,7 @@ hate_crack = [
"config.json.example", "config.json.example",
"hashcat-utils/**", "hashcat-utils/**",
"princeprocessor/**", "princeprocessor/**",
"omen/**",
] ]
[tool.setuptools_scm] [tool.setuptools_scm]
@@ -70,3 +71,8 @@ ignore_missing_imports = true
testpaths = [ testpaths = [
"tests", "tests",
] ]
[dependency-groups]
dev = [
"types-requests>=2.32.4.20260107",
]