Skip to content

Commit

Permalink
Fix review remarks
Browse files Browse the repository at this point in the history
  • Loading branch information
fowczarek committed Mar 27, 2020
1 parent ffb7a4b commit 48ec7ec
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 8 deletions.
5 changes: 0 additions & 5 deletions saleor/graphql/account/types.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,6 @@
from ..wishlist.resolvers import resolve_wishlist_items_from_user
from .enums import CountryCodeEnum, CustomerEventsEnum

# from ..wishlist.types import WishlistItem


class AddressInput(graphene.InputObjectType):
first_name = graphene.String(description="Given name.")
Expand Down Expand Up @@ -282,9 +280,6 @@ class User(CountableDjangoObjectType):
"saleor.graphql.payment.types.PaymentSource",
description="List of stored payment sources.",
)
# wishlist = PrefetchingConnectionField(
# WishlistItem, description="User's wishlist."
# )

class Meta:
description = "Represents user data."
Expand Down
3 changes: 0 additions & 3 deletions saleor/graphql/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,6 @@
from .warehouse.schema import StockQueries, WarehouseMutations, WarehouseQueries
from .webhook.schema import WebhookMutations, WebhookQueries

# from .wishlist.schema import WishlistMutations


class Query(
AccountQueries,
Expand Down Expand Up @@ -60,7 +58,6 @@ class Mutation(
ShopMutations,
WarehouseMutations,
WebhookMutations,
# WishlistMutations,
):
pass

Expand Down

0 comments on commit 48ec7ec

Please sign in to comment.