From ab3dbdda35bbac1c0d9378d278b502ee51d33b7d Mon Sep 17 00:00:00 2001
From: Anne Philipp <bscannephilipp@gmail.com>
Date: Mon, 5 Feb 2018 16:01:48 +0100
Subject: [PATCH] added separations between modules, class and funtions

---
 python/UIOTools.py | 11 ++++++++++-
 1 file changed, 10 insertions(+), 1 deletion(-)

diff --git a/python/UIOTools.py b/python/UIOTools.py
index f3738c8..6e9f5b8 100644
--- a/python/UIOTools.py
+++ b/python/UIOTools.py
@@ -22,16 +22,25 @@
     which can be obtained at http://www.apache.org/licenses/LICENSE-2.0.
 """
 
+
+# ------------------------------------------------------------------------------
+# MODULES
+# ------------------------------------------------------------------------------
 import os
 import glob
 
+# ------------------------------------------------------------------------------
+# Class
+# ------------------------------------------------------------------------------
 class UIOFiles:
     '''
     Class to manipulate files. At initialisation it has the attribute
     suffix which stores a list of suffixes of the files associated
     with the instance of the class.
     '''
-
+    # --------------------------------------------------------------------------
+    # FUNCTIONS
+    # --------------------------------------------------------------------------
     def __init__(self, suffix):
         '''
         @Description:
-- 
GitLab