Skip to content

Commit

Permalink
change bool from int8 to boo
Browse files Browse the repository at this point in the history
  • Loading branch information
oldshuren committed Feb 16, 2024
1 parent 7819181 commit a5fc367
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyulog/core.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ class ULog(object):
'uint64_t': ['Q', 8, np.uint64],
'float': ['f', 4, np.float32],
'double': ['d', 8, np.float64],
'bool': ['?', 1, np.int8],
'bool': ['?', 1, bool],
'char': ['c', 1, np.int8]
}

Expand Down

0 comments on commit a5fc367

Please sign in to comment.