From cdd22a4a6902cfaa1e2de48992531ebb3c294e91 Mon Sep 17 00:00:00 2001
From: Marko Petric <marko.petric@cern.ch>
Date: Thu, 12 Sep 2019 13:24:27 +0200
Subject: [PATCH] flake8 cpluginsvc.py

---
 .../python/GaudiPluginService/cpluginsvc.py   | 22 +++++++++----------
 1 file changed, 11 insertions(+), 11 deletions(-)

diff --git a/GaudiPluginService/python/GaudiPluginService/cpluginsvc.py b/GaudiPluginService/python/GaudiPluginService/cpluginsvc.py
index 97716ce43..82e939de2 100644
--- a/GaudiPluginService/python/GaudiPluginService/cpluginsvc.py
+++ b/GaudiPluginService/python/GaudiPluginService/cpluginsvc.py
@@ -27,7 +27,7 @@ __all__ = (
     "factories",
     "Factory",
     "Property",
-)
+    )
 
 _libname = None
 
@@ -170,43 +170,43 @@ _functions_list = [(
     "cgaudi_pluginsvc_instance",
     [],
     Registry,
-), (
+    ), (
     "cgaudi_pluginsvc_get_factory_size",
     [Registry],
     ctypes.c_int,
-), (
+    ), (
     "cgaudi_pluginsvc_get_factory_at",
     [Registry, ctypes.c_int],
     Factory,
-), (
+    ), (
     "cgaudi_factory_get_library",
     [Factory],
     ctypes.c_char_p,
-), (
+    ), (
     "cgaudi_factory_get_type",
     [Factory],
     ctypes.c_char_p,
-), (
+    ), (
     "cgaudi_factory_get_classname",
     [Factory],
     ctypes.c_char_p,
-), (
+    ), (
     "cgaudi_factory_get_property_size",
     [Factory],
     ctypes.c_int,
-), (
+    ), (
     "cgaudi_factory_get_property_at",
     [Factory, ctypes.c_int],
     Property,
-), (
+    ), (
     "cgaudi_property_get_key",
     [Property],
     ctypes.c_char_p,
-), (
+    ), (
     "cgaudi_property_get_value",
     [Property],
     ctypes.c_char_p,
-)]
+    )]
 
 for f in _functions_list:
   n = f[0]
-- 
GitLab