Skip to content

Commit

Permalink
BE-1501: fixed typo in method return type hint
Browse files Browse the repository at this point in the history
  • Loading branch information
Yaroslav committed Jul 6, 2021
1 parent df18a3c commit 9d2e229
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions livestyled/resource_client.py
Original file line number Diff line number Diff line change
Expand Up @@ -1022,13 +1022,13 @@ def update_venue(
self,
venue: Venue,
attributes: Dict
) -> ProductVariant:
) -> Venue:
return self._update_resource(VenueSchema, venue.id, attributes)

def create_venue(
self,
venue: Venue
) -> ProductVariant:
) -> Venue:
return self._create_resource(VenueSchema, venue)

# ---- FULFILMENT POINTS
Expand Down

0 comments on commit 9d2e229

Please sign in to comment.