Skip to content

Commit c6d82b0

Browse files
committed
Fix PR issues
1 parent 9622442 commit c6d82b0

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

.flake8

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
[flake8]
2+
exclude = .git,__pycache__,.venv,venv
3+
per-file-ignores =
4+
examples/*: F821

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,F821
2+
ignore = D100,D101,D102,D103,D105,D107,D203,D213

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) -> Iterable[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)