mirror of
https://github.com/home-assistant/core.git
synced 2026-02-26 21:05:18 +00:00
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
|
|
)
|