From 51b5ac4e1023a253aa5c896e256975f0e0199661 Mon Sep 17 00:00:00 2001 From: Siyuan Feng Date: Thu, 3 Mar 2022 11:57:12 +0000 Subject: [PATCH] hot fix --- python/tvm/contrib/hexagon/build.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/python/tvm/contrib/hexagon/build.py b/python/tvm/contrib/hexagon/build.py index 52dcd3049566..17a95b0ce333 100644 --- a/python/tvm/contrib/hexagon/build.py +++ b/python/tvm/contrib/hexagon/build.py @@ -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."""