We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 874ce6c commit 5bd1b6eCopy full SHA for 5bd1b6e
1 file changed
src/zeroconf/_services/__init__.py
@@ -50,7 +50,7 @@ def __init__(self) -> None:
50
self._handlers: List[Callable[..., None]] = []
51
52
def fire(self, **kwargs: Any) -> None:
53
- for h in list(self._handlers):
+ for h in self._handlers[:]:
54
h(**kwargs)
55
56
@property
0 commit comments