Skip to content

Commit

Permalink
Fix misspelled namespace
Browse files Browse the repository at this point in the history
  • Loading branch information
hahn-th committed May 23, 2024
1 parent f07c28e commit 70f8df4
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion src/homematicip/action/action.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from homematicip.model.model_compontens import FunctionalChannel
from homematicip.model.model_components import FunctionalChannel
from homematicip.model.hmip_base import HmipBaseModel


Expand Down
2 changes: 1 addition & 1 deletion src/homematicip/action/functional_channel_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from homematicip.model.enums import AccelerationSensorMode, AccelerationSensorNeutralPosition, \
AccelerationSensorSensitivity, NotificationSoundType, DoorCommand, LockState, RGBColorState, ClimateControlDisplay, \
AcousticAlarmSignal, AcousticAlarmTiming, WaterAlarmTrigger
from homematicip.model.model_compontens import FunctionalChannel
from homematicip.model.model_components import FunctionalChannel
from homematicip.runner import Runner


Expand Down
2 changes: 1 addition & 1 deletion src/homematicip/cli/helper.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import click

from homematicip.model.model import Model
from homematicip.model.model_compontens import FunctionalChannel, Device
from homematicip.model.model_components import FunctionalChannel, Device


def get_rssi_bar_string(rssi_value):
Expand Down
2 changes: 1 addition & 1 deletion src/homematicip/events/hmip_event_handler.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from homematicip.events.event_manager import EventManager
from homematicip.events.event_manager import ModelUpdateEvent
from homematicip.events.event_types import EventType
from homematicip.model.model_compontens import Group, Device, Client
from homematicip.model.model_components import Group, Device, Client
from homematicip.model.model import Model

LOGGER = logging.getLogger(__name__)
Expand Down
2 changes: 1 addition & 1 deletion src/homematicip/model/model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

from pydantic import ValidationError

from homematicip.model.model_compontens import Group, Device, Client
from homematicip.model.model_components import Group, Device, Client
from homematicip.model.hmip_base import HmipBaseModel
from homematicip.model.home import Home

Expand Down
2 changes: 1 addition & 1 deletion tests/actions/test_action_decorator.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import pytest

from homematicip.action.action import Action
from homematicip.model.model_compontens import Group, FunctionalChannel, Device
from homematicip.model.model_components import Group, FunctionalChannel, Device
from homematicip.model.hmip_base import HmipBaseModel


Expand Down
2 changes: 1 addition & 1 deletion tests/actions/test_functional_channel_actions.py
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
from homematicip.model.enums import AccelerationSensorMode, AccelerationSensorNeutralPosition, \
AccelerationSensorSensitivity, NotificationSoundType, DoorCommand, LockState, RGBColorState, ClimateControlDisplay, \
AcousticAlarmSignal, AcousticAlarmTiming, WaterAlarmTrigger
from homematicip.model.model_compontens import FunctionalChannel
from homematicip.model.model_components import FunctionalChannel
from homematicip.runner import Runner


Expand Down
2 changes: 1 addition & 1 deletion tests/model/test_functional_channel.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import json

from homematicip.model.model_compontens import FunctionalChannel
from homematicip.model.model_components import FunctionalChannel


def test_operation_lock_channel(filled_model):
Expand Down
2 changes: 1 addition & 1 deletion tests/model/test_model.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
from unittest.mock import Mock

from homematicip.model.model import build_model_from_json
from homematicip.model.model_compontens import GroupChannelReference, Group
from homematicip.model.model_components import GroupChannelReference, Group
from homematicip.model.hmip_base import HmipBaseModel
from homematicip.model.home import Home, FunctionalHome

Expand Down

0 comments on commit 70f8df4

Please sign in to comment.