Skip to content

Commit

Permalink
Make optional
Browse files Browse the repository at this point in the history
  • Loading branch information
viggo-devries committed Apr 19, 2024
1 parent 1b7ab6d commit 5c67731
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion oscar_odin/resources/catalogue.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ class Product(OscarCatalogue):
price: Decimal = DecimalField(null=True)
currency: Optional[str]
availability: Optional[int]
is_available_to_buy: bool
is_available_to_buy: Optional[bool]
partner: Optional[Any]

product_class: Optional[ProductClass] = None
Expand Down

0 comments on commit 5c67731

Please sign in to comment.