Skip to content

Commit

Permalink
pipx: remove unused param from the runner ctx.run() call (#8965)
Browse files Browse the repository at this point in the history
remove unused param from the runner ctx.run() call
  • Loading branch information
russoz authored Oct 2, 2024
1 parent 2d660a1 commit daaa008
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion plugins/modules/pipx.py
Original file line number Diff line number Diff line change
Expand Up @@ -308,7 +308,7 @@ def state_install(self):
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):
Expand Down

0 comments on commit daaa008

Please sign in to comment.