Skip to content

Commit 6170e18

Browse files
remove extra parameter
1 parent ae140bd commit 6170e18

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pizzapi/menu.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ def __init__(self, data={}, country=COUNTRY_USA):
4242
self.root_categories[key] = self.build_categories(value)
4343

4444
@classmethod
45-
def from_store(self, cls, store_id, lang='en', country=COUNTRY_USA):
45+
def from_store(cls, store_id, lang='en', country=COUNTRY_USA):
4646
response = request_json(Urls(country).menu_url(), store_id=store_id, lang=lang)
4747
menu = cls(response)
4848
return menu

0 commit comments

Comments
 (0)