From 4a2a8a5078cfcac8df2a9d6a3546daf0cf8cf873 Mon Sep 17 00:00:00 2001 From: Michael Renzmann Date: Sat, 27 May 2023 00:03:04 +0200 Subject: [PATCH] Reformatting by black to satisfy the CI tests --- examples/v4l2py-snapshot.py | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/examples/v4l2py-snapshot.py b/examples/v4l2py-snapshot.py index e74a0cc..e001799 100644 --- a/examples/v4l2py-snapshot.py +++ b/examples/v4l2py-snapshot.py @@ -162,19 +162,16 @@ def save_snapshot_pil(img, args): "--mirror-horizontal", default=False, action="store_true", - help="mirror snapshot horizontally" + help="mirror snapshot horizontally", ) postproc.add_argument( "--mirror-vertical", default=False, action="store_true", - help="mirror snapshot vertically" + help="mirror snapshot vertically", ) postproc.add_argument( - "--rotate", - type=int, - default=0, - help="rotate snapshot counter-clockwise" + "--rotate", type=int, default=0, help="rotate snapshot counter-clockwise" ) args = parser.parse_args()