From 3b670b895bb0ccfe67764719cb25eae42fe5d284 Mon Sep 17 00:00:00 2001 From: Labrys of Knossos Date: Sat, 5 Jan 2019 13:44:25 -0500 Subject: [PATCH] Refactor utils module to package --- cleanup.py | 1 + core/{utils.py => utils/__init__.py} | 0 2 files changed, 1 insertion(+) rename core/{utils.py => utils/__init__.py} (100%) diff --git a/cleanup.py b/cleanup.py index 8c2d54d2..02bdf648 100644 --- a/cleanup.py +++ b/cleanup.py @@ -17,6 +17,7 @@ FOLDER_STRUCTURE = { 'core': [ 'auto_process', 'extractor', + 'utils', ], } diff --git a/core/utils.py b/core/utils/__init__.py similarity index 100% rename from core/utils.py rename to core/utils/__init__.py