mirror of
https://github.com/home-assistant/core.git
synced 2026-05-17 22:10:57 +01:00
11 lines
290 B
Python
11 lines
290 B
Python
"""Tests for the OurGroceries integration."""
|
|
|
|
from typing import Any
|
|
|
|
|
|
def items_to_shopping_list(
|
|
items: list, version_id: str = "1"
|
|
) -> dict[str, dict[str, Any]]:
|
|
"""Convert a list of items into a shopping list."""
|
|
return {"list": {"versionId": version_id, "items": items}}
|