From 5c3e047c6f0cb30d74f79cc8681be38772dfb537 Mon Sep 17 00:00:00 2001 From: Siyuan Feng Date: Thu, 3 Mar 2022 23:49:37 +0800 Subject: [PATCH] hot fix (#10464) --- 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 52dcd30495664..17a95b0ce3331 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."""