Skip to content

Commit a5569a2

Browse files
author
Phil Varner
authored
checks for some limits were incorrect, so removing these until the actual adverstised limits can be pulled from the service-desc (#90)
1 parent e87db07 commit a5569a2

File tree

5 files changed

+104
-90
lines changed

5 files changed

+104
-90
lines changed

.pre-commit-config.yaml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,4 +69,5 @@ repos:
6969
hooks:
7070
- id: mypy
7171
exclude: '(test_.*|noxfile)\.py'
72-
additional_dependencies: ["types-requests", "types-click"]
72+
additional_dependencies:
73+
["types-requests", "types-click", "types-PyYAML"]

noxfile.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -151,7 +151,7 @@ def mypy(session: Session) -> None:
151151
"""Type-check using mypy."""
152152
args = session.posargs or ["src", "tests", "docs/conf.py"]
153153
session.install(".")
154-
session.install("mypy", "pytest", "types-requests")
154+
session.install("mypy", "pytest", "types-requests", "types-PyYAML")
155155
session.run("mypy", *args)
156156
if not session.posargs:
157157
session.run("mypy", f"--python-executable={sys.executable}", "noxfile.py")

0 commit comments

Comments
 (0)