Skip to content

Commit b72d6fc

Browse files
committed
fix bug missing feature in feature_of_interest
1 parent 4b15c76 commit b72d6fc

2 files changed

Lines changed: 2 additions & 1 deletion

File tree

frost_sta_client/__version__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
__title__ = 'frost_sta_client'
2-
__version__ = '1.1.24'
2+
__version__ = '1.1.25'
33
__license__ = 'LGPL3'
44
__author__ = 'Katharina Emde'
55
__copyright__ = 'Fraunhofer IOSB'

frost_sta_client/model/feature_of_interest.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -189,6 +189,7 @@ def __setstate__(self, state):
189189
self.description = state.get("description", None)
190190
self.properties = state.get("properties", None)
191191
self.encoding_type = state.get("encodingType", None)
192+
self.feature = state.get("feature", None)
192193
if state.get("Observations", None) is not None and isinstance(state["Observations"], list):
193194
entity_class = entity_type.EntityTypes['Observation']['class']
194195
self.observations = utils.transform_json_to_entity_list(state['Observations'], entity_class)

0 commit comments

Comments
 (0)