Skip to content

Commit fdd2cc8

Browse files
authored
Merge pull request #29 from samson0v/master
Fixed importing partially initialized module
2 parents 87c6a37 + 6c1bbeb commit fdd2cc8

22 files changed

+23
-21
lines changed

tb_rest_client/models/models_ce/admin_settings_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class AdminSettingsId(EntityId):

tb_rest_client/models/models_ce/alarm_id.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,8 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
18+
1819

1920
class AlarmId(EntityId):
2021
"""NOTE: This class is auto generated by the swagger code generator program.

tb_rest_client/models/models_ce/asset_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class AssetId(EntityId):

tb_rest_client/models/models_ce/audit_log_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class AuditLogId(EntityId):

tb_rest_client/models/models_ce/component_descriptor_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class ComponentDescriptorId(EntityId):

tb_rest_client/models/models_ce/customer_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class CustomerId(EntityId):

tb_rest_client/models/models_ce/dashboard_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class DashboardId(EntityId):

tb_rest_client/models/models_ce/device_credentials_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class DeviceCredentialsId(EntityId):

tb_rest_client/models/models_ce/device_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@
1515

1616
import six
1717

18-
from . import EntityId
18+
from .entity_id import EntityId
1919

2020

2121
class DeviceId(EntityId):

tb_rest_client/models/models_ce/device_profile_id.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
import re # noqa: F401
1515

1616
import six
17-
from . import EntityId
17+
from .entity_id import EntityId
1818

1919

2020
class DeviceProfileId(EntityId):

0 commit comments

Comments
 (0)