From 966217ae24a9fe7b060797d52b2200eaf64bf87d Mon Sep 17 00:00:00 2001 From: Salamandar <6552989+Salamandar@users.noreply.github.com> Date: Thu, 21 Nov 2024 16:46:09 +0000 Subject: [PATCH] :art: Format Python code with Black --- image_builder.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/image_builder.py b/image_builder.py index 920bbaa..e03d233 100755 --- a/image_builder.py +++ b/image_builder.py @@ -124,7 +124,9 @@ def main(): help="If passed, logs will be printed to this file", ) - parser.add_argument("debian_version", type=str, choices=["bullseye", "bookworm", "trixie"]) + parser.add_argument( + "debian_version", type=str, choices=["bullseye", "bookworm", "trixie"] + ) parser.add_argument( "distribution", type=str, choices=["stable", "testing", "unstable"] )