Skip to content

Commit a50448a

Browse files
committed
Correction of hal.py removing unusable lte capabilities in concrete classes.
1 parent 48d7825 commit a50448a

File tree

1 file changed

+0
-3
lines changed

1 file changed

+0
-3
lines changed

LiveObjects/hal.py

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,6 @@ def __init__(self, net_type):
8585
self._net_type = BoardsInterface.WIFI if net_type == BoardsInterface.DEFAULT_CARRIER else net_type
8686
self._carrier_capability = (BoardsInterface.WIFI,)
8787
self._wifi_tls_capability = False
88-
self._wifi_lte_capability = False
8988
self._mqtt_lib = super().mqtt_lib_import_str(self._lang)
9089
self._credentials = super().create_credentials(self._net_type)
9190

@@ -107,7 +106,6 @@ def __init__(self, net_type):
107106
self._net_type = BoardsInterface.WIFI if net_type == BoardsInterface.DEFAULT_CARRIER else net_type
108107
self._carrier_capability = (BoardsInterface.WIFI,)
109108
self._wifi_tls_capability = True
110-
self._wifi_lte_capability = False
111109
self._mqtt_lib = super().mqtt_lib_import_str(self._lang)
112110
self._credentials = super().create_credentials(self._net_type)
113111

@@ -125,7 +123,6 @@ def __init__(self, net_type):
125123
self._net_type = BoardsInterface.EXISTING_NETWORK if net_type == BoardsInterface.DEFAULT_CARRIER else net_type
126124
self._carrier_capability = (BoardsInterface.EXISTING_NETWORK,)
127125
self._wifi_tls_capability = True
128-
self._wifi_lte_capability = False
129126
self._mqtt_lib = super().mqtt_lib_import_str(self._lang)
130127
self._credentials = super().create_credentials(self._net_type)
131128

0 commit comments

Comments
 (0)