Skip to content

Commit

Permalink
Remove qualified_name for Device (#184)
Browse files Browse the repository at this point in the history
  • Loading branch information
tetienne committed Sep 23, 2021
1 parent c019e32 commit 73691b2
Showing 1 changed file with 0 additions and 3 deletions.
3 changes: 0 additions & 3 deletions pyhoma/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,6 @@ class Device:
data_properties: list[dict[str, Any]] | None = None
widget: str | None = None
ui_class: str | None = None
qualified_name: str | None = None
states: States
type: ProductType
placeoid: str
Expand All @@ -60,7 +59,6 @@ def __init__(
data_properties: list[dict[str, Any]] | None = None,
widget: str | None = None,
ui_class: str | None = None,
qualified_name: str | None = None,
states: list[dict[str, Any]] | None = None,
type: int,
placeoid: str,
Expand All @@ -78,7 +76,6 @@ def __init__(
self.data_properties = data_properties
self.widget = widget
self.ui_class = ui_class
self.qualified_name = qualified_name
self.type = ProductType(type)
self.placeoid = placeoid

Expand Down

0 comments on commit 73691b2

Please sign in to comment.