Simplifying game executable

This commit is contained in:
GeoffreyCoulaud
2023-08-27 13:53:23 +02:00
parent c607a65d1f
commit 6486f5b336
8 changed files with 11 additions and 14 deletions

View File

@@ -104,7 +104,7 @@ class ExecutableFormatSource(Source):
def make_executable(self, *args, **kwargs) -> str:
"""Use the executable format to"""
return self.executable_format.format(args, kwargs)
return self.executable_format.format(*args, **kwargs)
# pylint: disable=abstract-method