mirror of
https://github.com/home-assistant/core.git
synced 2025-12-25 13:38:04 +00:00
7 lines
251 B
Python
7 lines
251 B
Python
"""Tests for the OurGroceries integration."""
|
|
|
|
|
|
def items_to_shopping_list(items: list, version_id: str = "1") -> dict[dict[list]]:
|
|
"""Convert a list of items into a shopping list."""
|
|
return {"list": {"versionId": version_id, "items": items}}
|