PEP 8 compliance.

This commit is contained in:
yrriban 2025-06-15 02:16:59 -04:00
parent b54b865977
commit 218928f033

View file

@ -5,6 +5,7 @@ import shutil
import subprocess
import tempfile
class Fabricate(dcc.doom_base.WadMap):
def get_parser(self, prog_name):
parser = super().get_parser(prog_name)
@ -22,6 +23,8 @@ class Fabricate(dcc.doom_base.WadMap):
list.append(options, f"{k}={v}")
if len(options) > 0:
options = ["-assign", ",".join(options)]
subprocess.run(command + self.dsda_preamble() + options +
["-timedemo", self.demo_in_path()] +
["-viddump", self.video_path()])
subprocess.run(
command + self.dsda_preamble() + options
+ ["-timedemo", self.demo_in_path()]
+ ["-viddump", self.video_path()]
)