aboutsummaryrefslogtreecommitdiffstats
path: root/src/blimp/bl_process.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/blimp/bl_process.py')
-rw-r--r--src/blimp/bl_process.py7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/blimp/bl_process.py b/src/blimp/bl_process.py
index e1d8c93..2e56275 100644
--- a/src/blimp/bl_process.py
+++ b/src/blimp/bl_process.py
@@ -6,7 +6,12 @@ from ruamel.yaml import YAML, scalarstring
from .misc import *
+
class ProcessBlocklist:
+ def __init__(self):
+ pass
+
+ @classmethod
def process(self, blacklist, outfile, dryrun: bool):
"""
function to build and compare the local yaml file to the remote file
@@ -19,8 +24,6 @@ class ProcessBlocklist:
with open(outfile, "r", encoding="utf-8") as local_file:
local_blacklist = local_file.read()
- print("step local file")
-
except TypeError:
# no local copy use empty one instead
local_blacklist = YAML(typ="safe")