10 lines
219 B
Python
10 lines
219 B
Python
|
"""Opensky tests."""
|
||
|
from unittest.mock import patch
|
||
|
|
||
|
|
||
|
def patch_setup_entry() -> bool:
|
||
|
"""Patch interface."""
|
||
|
return patch(
|
||
|
"homeassistant.components.opensky.async_setup_entry", return_value=True
|
||
|
)
|