Skip to content

Commit

Permalink
added ignore flag as ruff didn't like the special class
Browse files Browse the repository at this point in the history
  • Loading branch information
jameshod5 committed May 2, 2024
1 parent a59ff72 commit c3031c6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/api/graphql.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,7 @@ def signal_datasets(
self,
limit: Optional[int] = None,
where: Optional[ShotWhereFilter] = None,
) -> List[strawberry.LazyType["Shot", __module__]]:
) -> List[strawberry.LazyType["Shot", __module__]]: # noqa: F821
results = do_where_child_member(self.signal_datasets, where)
if limit is not None:
results = results[:limit]
Expand All @@ -274,7 +274,7 @@ def signal_datasets(
@strawberry.field
def signals(
self, limit: Optional[int] = None, where: Optional[SignalWhereFilter] = None
) -> List[strawberry.LazyType["Signal", __module__]]:
) -> List[strawberry.LazyType["Signal", __module__]]: # noqa: F821
results = do_where_child_member(self.signals, where)
if limit is not None:
results = results[:limit]
Expand Down

0 comments on commit c3031c6

Please sign in to comment.