fix formating and typos

This commit is contained in:
AdilZouitine
2025-05-15 15:55:24 +02:00
parent 2051dd38fc
commit 1722f6e504
2 changed files with 2 additions and 4 deletions

View File

@@ -87,7 +87,7 @@ class RecordControlConfig(ControlConfig):
play_sounds: bool = True
# Resume recording on an existing dataset.
resume: bool = False
# Reset follower arms to an initial configuration.
# Reset follower arms to an initial position.
reset_follower_arms: bool = False
def __post_init__(self):

View File

@@ -28,9 +28,7 @@ def write_video(video_path, stacked_frames, fps):
# Filter out DeprecationWarnings raised from pkg_resources
with warnings.catch_warnings():
warnings.filterwarnings(
"ignore",
"pkg_resources is deprecated as an API",
category=DeprecationWarning,
"ignore", "pkg_resources is deprecated as an API", category=DeprecationWarning
)
imageio.mimsave(video_path, stacked_frames, fps=fps)