kopia lustrzana https://github.com/alexisart/fedi-meta
6 wiersze
200 B
Python
6 wiersze
200 B
Python
![]() |
from typing import Generator
|
||
|
|
||
|
def format_addresses(addresses: list[dict]) -> Generator[str, dict, None]:
|
||
|
for address in addresses:
|
||
|
if "route" in address:
|
||
|
yield address["route"]
|