qapi/gen.py: Remove unused parameter

_module_dirname doesn't use the 'what' argument, so remove it.

Signed-off-by: John Snow <jsnow@redhat.com>
Reviewed-by: Eduardo Habkost <ehabkost@redhat.com>
Reviewed-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20201009161558.107041-30-jsnow@redhat.com>
Reviewed-by: Markus Armbruster <armbru@redhat.com>
Signed-off-by: Markus Armbruster <armbru@redhat.com>
This commit is contained in:
John Snow 2020-10-09 12:15:51 -04:00 committed by Markus Armbruster
parent 17d40c3957
commit 0cbd5b0516
1 changed files with 2 additions and 2 deletions

View File

@ -257,7 +257,7 @@ class QAPISchemaModularCVisitor(QAPISchemaVisitor):
def _is_builtin_module(name: Optional[str]) -> bool:
return not name
def _module_dirname(self, what: str, name: Optional[str]) -> str:
def _module_dirname(self, name: Optional[str]) -> str:
if self._is_user_module(name):
return os.path.dirname(name)
return ''
@ -275,7 +275,7 @@ class QAPISchemaModularCVisitor(QAPISchemaVisitor):
return ret
def _module_filename(self, what: str, name: Optional[str]) -> str:
return os.path.join(self._module_dirname(what, name),
return os.path.join(self._module_dirname(name),
self._module_basename(what, name))
def _add_module(self, name: Optional[str], blurb: str) -> None: