Skip to content

Commit

Permalink
fix ruff
Browse files Browse the repository at this point in the history
  • Loading branch information
SimonBoothroyd committed Oct 20, 2024
1 parent a5756b4 commit 4b7e8f7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/griffe_pydantic/static.py
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ def process_class(cls: Class, *, processed: set[str], schema: bool = False) -> N
if resolved is None:
logger.warning(f"cannot yet process {member}")
continue
member = resolved
member = resolved # noqa: PLW2901
if isinstance(member, Attribute):
process_attribute(member, cls, processed=processed)
elif isinstance(member, Function):
Expand Down

0 comments on commit 4b7e8f7

Please sign in to comment.