From b8dc7826fe913cde63e4617bcde485721856cf6c Mon Sep 17 00:00:00 2001 From: checktheroads Date: Mon, 30 Dec 2019 09:42:32 -0700 Subject: [PATCH] force uvloop --- hyperglass/__init__.py | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/hyperglass/__init__.py b/hyperglass/__init__.py index 7e10ed6..fc51df9 100644 --- a/hyperglass/__init__.py +++ b/hyperglass/__init__.py @@ -35,6 +35,11 @@ ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. """ +# Third Party Imports +# Stackprinter Configuration +import stackprinter +import uvloop + # Project Imports # flake8: noqa: F401 from hyperglass import command @@ -44,11 +49,6 @@ from hyperglass import exceptions from hyperglass import render from hyperglass import util -import uvloop - -# Stackprinter Configuration -import stackprinter - stackprinter.set_excepthook() uvloop.install()