Skip to content

Commit

Permalink
installation_proxy: forgot this one
Browse files Browse the repository at this point in the history
  • Loading branch information
Abdullah-Albanna authored Oct 13, 2024
1 parent 6fb88c0 commit d2f6b37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pymobiledevice3/services/installation_proxy.py
Original file line number Diff line number Diff line change
Expand Up @@ -78,9 +78,9 @@ def send_cmd_for_bundle_identifier(self, bundle_identifier: str, cmd: str = 'Arc
self.service.send_plist(cmd)
self._watch_completion(handler, *args)

def install(self, ipa_or_ipcc_path: str, options: Optional[dict] = None, handler: Callable = None, *args) -> None:
def install(self, package_path: str, options: Optional[dict] = None, handler: Callable = None, *args) -> None:
""" install given ipa/ipcc from device path """
self.install_from_local(ipa_or_ipcc_path, 'Install', options, handler, args)
self.install_from_local(package_path, 'Install', options, handler, args)

def upgrade(self, ipa_path: str, options: Optional[dict] = None, handler: Callable = None, *args) -> None:
""" upgrade given ipa from device path """
Expand Down

0 comments on commit d2f6b37

Please sign in to comment.