Skip to content

Commit

Permalink
mark function as public
Browse files Browse the repository at this point in the history
  • Loading branch information
domstoppable committed Sep 30, 2024
1 parent a30ed01 commit 9541e19
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/pupil_labs/neon_recording/stream/imu/imu_stream.py
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ def __init__(self, recording):
for imu_file, _ in imu_files:
with imu_file.open("rb") as raw_file:
raw_data = raw_file.read()
imu_packets = _parse_neon_imu_raw_packets(raw_data)
imu_packets = parse_neon_imu_raw_packets(raw_data)

for packet in imu_packets:
rotation = Rotation.from_quat(
Expand All @@ -107,7 +107,7 @@ def __init__(self, recording):
super().__init__("imu", recording, data)


def _parse_neon_imu_raw_packets(buffer):
def parse_neon_imu_raw_packets(buffer):
index = 0
packet_sizes = []
while True:
Expand Down

0 comments on commit 9541e19

Please sign in to comment.