Skip to content

Commit

Permalink
hot fix (#10464)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hzfengsy authored Mar 3, 2022
1 parent 0c836b7 commit 8f46d12
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion python/tvm/contrib/hexagon/build.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,9 @@ def _copy_to_remote(
self, local_path: Union[str, pathlib.Path], remote_path: Union[str, pathlib.Path]
):
"""Abstract method implementation. See description in HexagonLauncherRPC."""
subprocess.check_call(self._adb_device_sub_cmd + ["push", str(local_path), str(remote_path)])
subprocess.check_call(
self._adb_device_sub_cmd + ["push", str(local_path), str(remote_path)]
)

def _create_remote_directory(self, remote_path: Union[str, pathlib.Path]):
"""Abstract method implementation. See description in HexagonLauncherRPC."""
Expand Down

0 comments on commit 8f46d12

Please sign in to comment.