PEP 8 compliance.
This commit is contained in:
parent
95132370e7
commit
2e9b8b148e
1 changed files with 6 additions and 3 deletions
|
@ -2,7 +2,10 @@ import dcc.config
|
|||
import dcc.doom_base
|
||||
import subprocess
|
||||
|
||||
|
||||
class Record(dcc.doom_base.WadMap):
|
||||
def take_action(self, parsed_args):
|
||||
subprocess.run([self.dsda] + self.dsda_preamble() +
|
||||
["-record", self.demo_out_path()])
|
||||
def take_action(self, parsed_args):
|
||||
subprocess.run(
|
||||
[self.dsda] + self.dsda_preamble() +
|
||||
["-record", self.demo_out_path()]
|
||||
)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue