Skip to content

Commit 8b2fca1

Browse files
authored
Update pep8-naming and fix inconsistently named TypeVar (#713)
* Update pep8-naming in poetry.lock * tests: Work around pep8-naming typevar underscore bug * Update poetry.lock * tests: Remove noqa for typevar
1 parent 984d047 commit 8b2fca1

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

poetry.lock

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

tests/component/test_stream_readers_di.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def _bool_array_to_int(bool_array: numpy.typing.NDArray[numpy.bool_]) -> int:
179179
return result
180180

181181

182-
_D = TypeVar("_D", bound=numpy.generic, covariant=True)
182+
_D = TypeVar("_D", bound=numpy.generic)
183183

184184

185185
def _read_and_copy(

0 commit comments

Comments
 (0)