From 4cae5987db1b5acd77683fd41e2bd36580ed99d3 Mon Sep 17 00:00:00 2001 From: yrriban Date: Mon, 1 Sep 2025 19:03:57 -0400 Subject: [PATCH] PEP 8 compliance. --- dcc/concat.py | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/dcc/concat.py b/dcc/concat.py index b0af14f..4be4705 100644 --- a/dcc/concat.py +++ b/dcc/concat.py @@ -15,6 +15,7 @@ class State(enum.Enum): STARTED = 2 DONE = 3 + class Concat(dcc.doom_base.Wad): def get_parser(self, prog_name): parser = super().get_parser(prog_name) @@ -49,7 +50,11 @@ class Concat(dcc.doom_base.Wad): # Presumably fixable, but it's easier to just make one graph per video # and mux everything together at the end. # TODO: Support UDoom in literally any way. - d2maps = [str(x).zfill(2) for x in range(1,16)] + ["31","32"] + [str(x) for x in range(16,31)] + d2maps = ( + [str(x).zfill(2) for x in range(1, 16)] + + ["31", "32"] + + [str(x) for x in range(16, 31)] + ) state = State.NOT_STARTED for idx in d2maps: if idx == parsed_args.start_map: