Skip to content

Commit

Permalink
Pipfile: Upgrade strawberry-graphql
Browse files Browse the repository at this point in the history
  • Loading branch information
justuswilhelm committed Sep 8, 2023
1 parent ccf3822 commit bea9278
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ psycopg2 = "==2.9.3"
python-dotenv = "==0.20.0"
redis = "==4.5.4"
rules = "==3.3"
strawberry-graphql = "~=0.179.0"
strawberry-graphql = "~=0.189.0"
strawberry-graphql-django = "~=0.9.0"
stripe = "==3.5.0"
tqdm = "==4.64.0"
Expand Down
14 changes: 7 additions & 7 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion workspace/schema/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ def user_invitations(self) -> list["UserInvitation"]:
for invite in qs.iterator():
# workspace/schema/types.py:58: error: Unexpected keyword argument "email" for "UserInvitation" [call-arg]
# Why??? XXX Justus 2023-09-08
i = UserInvitation(email=invite.user_invite.email) # type: ignore
i = UserInvitation(email=invite.user_invite.email)
invites.append(i)
return invites

Expand Down

0 comments on commit bea9278

Please sign in to comment.