Skip to content

Commit

Permalink
hot fix (apache#10464)
Browse files Browse the repository at this point in the history
  • Loading branch information
Hzfengsy authored and Ziqiang XU committed Mar 6, 2022
1 parent e86a056 commit 5c3e047
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 5c3e047

Please sign in to comment.