Skip to content

Commit

Permalink
blacked
Browse files Browse the repository at this point in the history
  • Loading branch information
jhnnsrs committed Aug 23, 2024
1 parent 7c07f5b commit 56b5261
Show file tree
Hide file tree
Showing 5 changed files with 3 additions and 7 deletions.
1 change: 0 additions & 1 deletion rath/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
"""


from .rath import Rath

__all__ = ["Rath"]
1 change: 0 additions & 1 deletion rath/links/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@
"""


from .compose import compose
from .split import split

Expand Down
1 change: 0 additions & 1 deletion rath/links/shrink.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,6 @@


class ShrinkingLink(ParsingLink):

"""Shrinking Link is a link that shrinks operation variables.
It traverses the variables dict, and converts any model that has a .ashrink() method to its id.
"""
Expand Down
6 changes: 3 additions & 3 deletions rath/links/testing/mock.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ class AsyncMockLink(AsyncTerminatingLink):
mutation_resolver: Dict[str, Callable[[Operation], Awaitable[Dict]]] = Field(
default_factory=dict, exclude=True
)
subscription_resolver: Dict[
str, Callable[[Operation], AsyncIterator[Dict]]
] = Field(default_factory=dict, exclude=True)
subscription_resolver: Dict[str, Callable[[Operation], AsyncIterator[Dict]]] = (
Field(default_factory=dict, exclude=True)
)
resolver: ResolverDict = Field(default_factory=dict, exclude=True)

@validator(
Expand Down
1 change: 0 additions & 1 deletion rath/qt/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@
"""


from .helpers import QtRathQuery

__all__ = ["QtRathQuery"]

0 comments on commit 56b5261

Please sign in to comment.