Skip to content

Commit

Permalink
Get rid of unneeded noqa
Browse files Browse the repository at this point in the history
  • Loading branch information
jerry-git committed Jun 20, 2024
1 parent 73a211e commit e49117a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/magic_di/_injector.py
Original file line number Diff line number Diff line change
Expand Up @@ -133,7 +133,7 @@ def inspect(self, obj: AnyObject) -> Signature[AnyObject]:
else:
signature.deps[name] = hint

except Exception as exc: # noqa: BLE001
except Exception as exc:
raise InspectionError(obj) from exc

return signature
Expand Down

0 comments on commit e49117a

Please sign in to comment.