1
0
mirror of https://github.com/gryf/fs-uae-wrapper.git synced 2025-12-24 07:02:26 +01:00

Fix some lint errors and warnings

This commit is contained in:
2024-09-14 10:53:58 +02:00
parent 7b40974779
commit 3b597e34ee
6 changed files with 166 additions and 43 deletions

View File

@@ -82,7 +82,7 @@ class Base(object):
"""execute fs-uae"""
curdir = os.path.abspath('.')
os.chdir(self.dir)
utils.run_command(['fs-uae'] + self.fsuae_options.list())
utils.run_command(['fs-uae', *self.fsuae_options.list()])
os.chdir(curdir)
return True