Skip to content

Commit

Permalink
Fixed issue with IntFlag range values
Browse files Browse the repository at this point in the history
  • Loading branch information
ritchiecarroll committed Oct 16, 2024
1 parent eae9e21 commit 10fafb9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sttp/transport/datasubscriber.py
Original file line number Diff line number Diff line change
Expand Up @@ -1014,7 +1014,7 @@ def _parse_tssc_measurements(self, signalindexcache: SignalIndexCache, data: byt
signalindexcache.signalid(pointid),
np.float64(value),
np.uint64(timestamp),
StateFlags(stateflags))
StateFlags(int(stateflags)))

index += 1

Expand Down

0 comments on commit 10fafb9

Please sign in to comment.