Files
tsun-gen3-proxy/ha_addons/ha_addon/rootfs/home/proxy/iter_registry.py
2024-12-02 22:49:56 +01:00

10 lines
198 B
Python

from abc import ABCMeta
class AbstractIterMeta(ABCMeta):
def __iter__(cls):
for ref in cls._registry:
obj = ref()
if obj is not None:
yield obj