black lint the file ("again" ;-)
diff --git a/python/mpact/mpactbackend.py b/python/mpact/mpactbackend.py
index 2a01af2..6df6137 100644
--- a/python/mpact/mpactbackend.py
+++ b/python/mpact/mpactbackend.py
@@ -20,7 +20,7 @@
 
 # One time set up of support library and optimization level.
 SUPPORT_LIB = os.getenv("SUPPORT_LIB", default=None)
-SHARED_LIBS = [  ] if SUPPORT_LIB is None else [ SUPPORT_LIB ]
+SHARED_LIBS = [] if SUPPORT_LIB is None else [SUPPORT_LIB]
 OPT_LEVEL = int(os.getenv("OPT_LEVEL", default=2))
 
 
@@ -102,9 +102,7 @@
 
 class MpactBackendInvoker:
     def __init__(self, module):
-        self.ee = ExecutionEngine(
-            module, opt_level=OPT_LEVEL, shared_libs=SHARED_LIBS
-        )
+        self.ee = ExecutionEngine(module, opt_level=OPT_LEVEL, shared_libs=SHARED_LIBS)
         self.result = None
 
         return_funcs = get_return_funcs(module)