Return True if the given target/ident/fn is set up to listen.
(target: Any, identifier: str, fn: Callable[..., Any])
| 215 | |
| 216 | |
| 217 | def contains(target: Any, identifier: str, fn: Callable[..., Any]) -> bool: |
| 218 | """Return True if the given target/ident/fn is set up to listen.""" |
| 219 | |
| 220 | return _event_key(target, identifier, fn).contains() |
nothing calls this directly
no test coverage detected