Late review on added type hint MQTT fixture (#87342)

This commit is contained in:
Jan Bouwhuis 2023-02-03 22:22:52 +01:00 committed by GitHub
parent 3cb9b273c9
commit 97de0c6d9a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 3 deletions

View File

@ -89,9 +89,7 @@ def _utcnow():
dt_util.utcnow = _utcnow
event.time_tracker_utcnow = _utcnow
MqttMockType = Callable[
..., Coroutine[Any, Any, Callable[..., Coroutine[Any, Any, MagicMock]]]
]
MqttMockType = Callable[..., Coroutine[Any, Any, MagicMock]]
def pytest_addoption(parser):