Skip to content

Commit af02613

Browse files
committed
Allow implicit options to be passed into product.sku
1 parent 76a8f5d commit af02613

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bigcommerce/resources/products.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -48,11 +48,11 @@ def rules(self, id=None):
4848
else:
4949
return ProductRules.all(self.id, connection=self._connection)
5050

51-
def skus(self, id=None):
51+
def skus(self, id=None, **kwargs):
5252
if id:
53-
return ProductSkus.get(self.id, id, connection=self._connection)
53+
return ProductSkus.get(self.id, id, connection=self._connection, **kwargs)
5454
else:
55-
return ProductSkus.all(self.id, connection=self._connection)
55+
return ProductSkus.all(self.id, connection=self._connection, **kwargs)
5656

5757
def videos(self, id=None):
5858
if id:

0 commit comments

Comments
 (0)