Skip to content

Commit

Permalink
fix: handle not finding the laser
Browse files Browse the repository at this point in the history
  • Loading branch information
ccrutchf committed Nov 10, 2024
1 parent 455b56b commit 8010912
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions fishsense_lite/commands/label_studio.py
Original file line number Diff line number Diff line change
Expand Up @@ -245,6 +245,7 @@ def __build_laser_json(
laser_json_objects = [
LaserLabelStudioJSON(f.relative_to(output.absolute()).as_posix(), l, w, h)
for f, l, w, h in self.tqdm(futures, total=len(files))
if l is not None
]

with open(laser_json_path, "w") as f:
Expand Down

0 comments on commit 8010912

Please sign in to comment.