8000 Fix flake8 errors and update changelog · kiq7/python-dependency-injector@150fd1f · GitHub
[go: up one dir, main page]

Skip to content

Commit 150fd1f

Browse files
committed
Fix flake8 errors and update changelog
1 parent 677857f commit 150fd1f

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

docs/main/changelog.rst

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ that were made in every particular version.
77
From version 0.7.6 *Dependency Injector* framework strictly
88
follows `Semantic versioning`_
99

10+
Development version
11+
-------------------
12+
- Fix wiring to not crash on missing signatures.
13+
See issue: `#420 <https://github.com/ets-labs/python-dependency-injector/issues/420>`_.
14+
Thanks to `@Balthus1989 <https://github.com/Balthus1989>`_ for reporting the issue.
15+
1016
4.29.1
1117
------
1218
- Fix recursive copying issue in ``Delegate`` provider.

src/dependency_injector/wiring.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -481,7 +481,7 @@ def _unpatch_attribute(patched: PatchedAttribute) -> None:
481481
setattr(patched.member, patched.name, patched.marker)
482482

483483

484-
def _fetch_reference_injections(
484+
def _fetch_reference_injections( # noqa: C901
485485
fn: Callable[..., Any],
486486
) -> Tuple[Dict[str, Any], Dict[str, Any]]:
487487
# Hotfix, see:

0 commit comments

Comments
 (0)
0