Skip to content

Commit 9622442

Browse files
committed
Fix CI checks and Python 3.8 tests
1 parent 3e5dffe commit 9622442

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

examples/.pydocstylerc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
[pydocstyle]
2-
ignore = D100,D101,D102,D103,D105,D107,D203,D213
2+
ignore = D100,D101,D102,D103,D105,D107,D203,D213,F821

src/dependency_injector/wiring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1027,7 +1027,7 @@ def _patched(*args, **kwargs):
10271027
return cast(F, _patched)
10281028

10291029

1030-
def _get_members_and_annotated(obj: Any) -> list[tuple[str, Any]]:
1030+
def _get_members_and_annotated(obj: Any) -> Iterable[tuple[str, Any]]:
10311031
members = inspect.getmembers(obj)
10321032
try:
10331033
annotations = inspect.get_annotations(obj)

0 commit comments

Comments
 (0)