pipx: remove unused param from the runner ctx.run() call (#8965)

remove unused param from the runner ctx.run() call
pull/8971/head
Alexei Znamensky 2024-10-03 07:00:03 +13:00 committed by GitHub
parent 2d660a1252
commit daaa008713
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 1 additions and 1 deletions

View File

@ -308,7 +308,7 @@ class PipX(StateModuleHelper):
def state_install_all(self):
self.changed = True
with self.runner('state global index_url force python system_site_packages editable pip_args spec_metadata', check_mode_skip=True) as ctx:
ctx.run(name_source=[self.vars.name, self.vars.source])
ctx.run()
self._capture_results(ctx)
def state_upgrade(self):