Skip to content

Commit

Permalink
Move example data to subfolder
Browse files Browse the repository at this point in the history
  • Loading branch information
aeshub committed Apr 30, 2023
1 parent 1f8d6fa commit cfaac45
Show file tree
Hide file tree
Showing 6 changed files with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/isar_robot/robotinterface.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,16 +58,17 @@ def __init__(self) -> None:
)

self.example_images: Path = Path(
os.path.dirname(os.path.realpath(__file__)), "example_images"
os.path.dirname(os.path.realpath(__file__)), "example_data/example_images"
)
self.example_videos: Path = Path(
os.path.dirname(os.path.realpath(__file__)), "example_videos"
os.path.dirname(os.path.realpath(__file__)), "example_data/example_videos"
)
self.example_thermal_videos: Path = Path(
os.path.dirname(os.path.realpath(__file__)), "example_thermal_videos"
os.path.dirname(os.path.realpath(__file__)),
"example_data/example_thermal_videos",
)
self.example_audio: Path = Path(
os.path.dirname(os.path.realpath(__file__)), "example_audio"
os.path.dirname(os.path.realpath(__file__)), "example_data/example_audio"
)

self.battery_level: float = 100.0
Expand Down

0 comments on commit cfaac45

Please sign in to comment.