python: run isort on everything
[babeltrace.git] / src / bindings / python / bt2 / bt2 / py_plugin.py
index 863ae7f0aa4cfe9149f0e79fa9acd53c14ad5659..5702a2fe38f20f7a94c23d5e295002f15deaa83d 100644 (file)
@@ -2,10 +2,10 @@
 #
 # Copyright (c) 2017 Philippe Proulx <pproulx@efficios.com>
 
-from bt2 import utils as bt2_utils
-from bt2 import component as bt2_component
 import sys
 
+from bt2 import utils as bt2_utils
+from bt2 import component as bt2_component
 
 # Python plugin path to `_PluginInfo` (cache)
 _plugin_infos = {}
@@ -91,9 +91,9 @@ def _try_load_plugin_module(path):
         # do not load module and create plugin info twice for this path
         return _plugin_infos[path]
 
-    import importlib.machinery
-    import inspect
     import hashlib
+    import inspect
+    import importlib.machinery
 
     if path is None:
         raise TypeError("missing path")
This page took 0.027304 seconds and 4 git commands to generate.