-
Notifications
You must be signed in to change notification settings - Fork 29
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Remove deprecated code * Remove old codeql config * Remove unused fixture * Minor clean up * Refactor async_post_request Signed-off-by: Tobias Sauerwein <[email protected]> --------- Signed-off-by: Tobias Sauerwein <[email protected]>
- Loading branch information
Showing
17 changed files
with
65 additions
and
5,279 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,44 +1,25 @@ | ||
"""Expose submodules.""" | ||
from pyatmo import const, modules | ||
from pyatmo.account import AsyncAccount | ||
from pyatmo.auth import AbstractAsyncAuth, ClientAuth, NetatmoOAuth2 | ||
from pyatmo.camera import AsyncCameraData, CameraData | ||
from pyatmo.auth import AbstractAsyncAuth | ||
from pyatmo.exceptions import ApiError, InvalidHome, InvalidRoom, NoDevice, NoSchedule | ||
from pyatmo.home import Home | ||
from pyatmo.home_coach import AsyncHomeCoachData, HomeCoachData | ||
from pyatmo.modules import Module | ||
from pyatmo.modules.device_types import DeviceType | ||
from pyatmo.public_data import AsyncPublicData, PublicData | ||
from pyatmo.room import Room | ||
from pyatmo.thermostat import AsyncHomeData, AsyncHomeStatus, HomeData, HomeStatus | ||
from pyatmo.weather_station import AsyncWeatherStationData, WeatherStationData | ||
|
||
__all__ = [ | ||
"AbstractAsyncAuth", | ||
"ApiError", | ||
"AsyncAccount", | ||
"AsyncCameraData", | ||
"AsyncHomeCoachData", | ||
"AsyncHomeData", | ||
"AsyncHomeStatus", | ||
"AsyncPublicData", | ||
"AsyncWeatherStationData", | ||
"CameraData", | ||
"ClientAuth", | ||
"HomeCoachData", | ||
"HomeData", | ||
"HomeStatus", | ||
"InvalidHome", | ||
"InvalidRoom", | ||
"Home", | ||
"Module", | ||
"Room", | ||
"DeviceType", | ||
"NetatmoOAuth2", | ||
"NoDevice", | ||
"NoSchedule", | ||
"PublicData", | ||
"WeatherStationData", | ||
"const", | ||
"modules", | ||
] |
Oops, something went wrong.