We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 72a64bf commit fe1dbe8Copy full SHA for fe1dbe8
swapi/film.py
@@ -203,7 +203,6 @@ class FilmsEdge:
203
204
@staticmethod
205
def from_row(row: prisma.models.Film) -> "FilmsEdge":
206
-
207
return FilmsEdge(cursor=str(row.id), node=Film.from_row(row))
208
209
swapi/utils/connections.py
@@ -64,7 +64,7 @@ async def get_connection_object(
64
first: int | None = strawberry.UNSET,
65
last: int | None = strawberry.UNSET,
66
attribute_name: str | None = None,
67
- additional_filters: dict[str, Any] | None = None
+ additional_filters: dict[str, Any] | None = None,
68
):
69
"""Returns a ConnectionType instance based on EdgeType and the passed params.
70
0 commit comments