This is an automated email from the ASF dual-hosted git repository.
nicknezis pushed a commit to branch nicknezis/bazel-2
in repository https://gitbox.apache.org/repos/asf/incubator-heron.git
The following commit(s) were added to refs/heads/nicknezis/bazel-2 by this push:
new fd1504e Fixing my error
fd1504e is described below
commit fd1504e5282614ee1dde2be7fdaaded8d8c93f5a
Author: Nicholas Nezis <[email protected]>
AuthorDate: Tue Apr 14 16:50:08 2020 -0400
Fixing my error
---
heron/shell/src/python/handlers/killexecutorhandler.py | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/heron/shell/src/python/handlers/killexecutorhandler.py
b/heron/shell/src/python/handlers/killexecutorhandler.py
index 0e24569..6a04161 100644
--- a/heron/shell/src/python/handlers/killexecutorhandler.py
+++ b/heron/shell/src/python/handlers/killexecutorhandler.py
@@ -20,14 +20,14 @@
''' killexecutorhandler.py '''
+from future.standard_library import install_aliases
+install_aliases()
+
import logging
import os
import signal
from urllib.parse import parse_qsl
-from future.standard_library import install_aliases
-install_aliases()
-
import tornado.web
from tornado.options import options