Skip to content

Commit 48d7b81

Browse files
committed
MOD: Upgrade client library to mypy v1.1.1
1 parent 7b98924 commit 48d7b81

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

requirements_dev.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
mypy==1.0.1
1+
mypy==1.1.1
22
pytest>=7.2.2
33
pytest-mock>=3.10.0
44
types-requests

tests/test_common_enums.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -142,7 +142,7 @@ def test_int_flags_stringy_mixin(enum_type: Type[Flag]) -> None:
142142
"""
143143
Test that combinations of int flags are displayed properly.
144144
"""
145-
for value in map(sum, combinations(enum_type, 2)):
145+
for value in map(sum, combinations(enum_type, 2)): # type: ignore [arg-type]
146146
record_flags = enum_type(value)
147147
assert str(record_flags) == ", ".join(
148148
f.name.lower() for f in enum_type if f in record_flags

0 commit comments

Comments
 (0)