Skip to content

Commit b72d64b

Browse files
committed
linting
1 parent 8174dfd commit b72d64b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

src/hyperframe/flags.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ class Flags(MutableSet): # type: ignore
2222
Will behave like a regular set(), except that a ValueError will be thrown
2323
when .add()ing unexpected flags.
2424
"""
25-
def __init__(self, defined_flags: Iterable[Flag]):
25+
def __init__(self, defined_flags: Iterable[Flag]) -> None:
2626
self._valid_flags = set(flag.name for flag in defined_flags)
2727
self._flags: Set[str] = set()
2828

tox.ini

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,8 +26,8 @@ commands = pytest {posargs}
2626

2727
[testenv:lint]
2828
deps =
29-
flake8>=3.9.1,<4
30-
mypy==0.812
29+
flake8>=7.1.1,<8
30+
mypy>=1.13.0,<2
3131
commands =
3232
flake8 src/ test/
3333
mypy --strict src/

0 commit comments

Comments
 (0)