Skip to content

Commit

Permalink
madamecuisine: nitpick/consistency fixup: return integer values from …
Browse files Browse the repository at this point in the history
…`total_time` field
  • Loading branch information
jayaddison committed Dec 4, 2024
1 parent e49df1a commit 5093d2b
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion recipe_scrapers/madamecuisine.py
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ def total_time(self):
for time_element in time_elements:
total_time += int(time_element.contents[0].strip())

return f"{total_time}"
return total_time

def yields(self):
return get_yields(self.soup.find("span", {"class": "wprm-recipe-servings"}))
Expand Down
2 changes: 1 addition & 1 deletion tests/test_data/madamecuisine.de/madamecuisine_1.json
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@
"category": "Eintopf, Gemüseeintopf",
"yields": "4 servings",
"description": "Dieser leckere Eintopf wird mit viel Gemüse, Bohnen, Gewürzen und Kräutern zubereitet. Die Gemüse-Sorten lassen sich - je nach Geschmack und Saison - beliebig variieren. Ein einfaches Essen, das sich wunderbar vorbereiten lässt und durchaus auch Gäste tauglich ist. ",
"total_time": "60",
"total_time": 60,
"cuisine": "Amerikanisch, Deutsch",
"image": "https://www.madamecuisine.de/wp-content/uploads/2024/10/gemueseeintopf-mit-wintergemuese04.jpg"
}
2 changes: 1 addition & 1 deletion tests/test_data/madamecuisine.de/madamecuisine_2.json
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
"category": "Paprika, Schakschuka, Shakshuka, Tomaten, Versunkene Eier",
"yields": "2 servings",
"description": "Shakshuka, das sind versunkene Eier in einer Tomatensoße mit Paprika und Zwiebeln. Die Soße in einer Pfanne langsam einköcheln, dann die Eier im Ofen stocken lassen.",
"total_time": "60",
"total_time": 60,
"cuisine": "Israelisch / Arabisch",
"image": "https://www.madamecuisine.de/wp-content/uploads/2019/11/shakshuka02-720x480.jpg"
}

0 comments on commit 5093d2b

Please sign in to comment.