Skip to content

Commit

Permalink
fix: formatter returned incompatible syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
tomli380576 committed Jan 2, 2025
1 parent 824a854 commit 0582a49
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions checkbox-support/checkbox_support/camera_pipelines.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,7 +122,7 @@ def get_all_fixated_caps(
self,
caps: Gst.Caps,
resolve_method: str, # type T.Literal["remap", "limit"]
limit: int = 10_000,
limit: int = 10000,
) -> T.List[Gst.Caps]:
"""Gets all the fixated(1 value per property) caps from a Gst.Caps obj
Expand Down Expand Up @@ -388,7 +388,7 @@ def take_photo(
*,
caps: T.Optional[Gst.Caps] = None,
file_path: str,
delay_seconds=0,
delay_seconds=0
):
"""Take a photo using the source element
Expand Down Expand Up @@ -474,7 +474,7 @@ def record_video(
*,
caps: T.Optional[Gst.Caps] = None,
file_path: str,
record_n_seconds=0,
record_n_seconds=0
):
assert file_path.endswith(
".mkv"
Expand Down

0 comments on commit 0582a49

Please sign in to comment.