aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAlex Schofield <git@ajschof.me>2025-02-21 02:50:10 +0000
committerAlex Schofield <git@ajschof.me>2025-02-21 02:50:10 +0000
commite721d6f4fcf4877c81e36530c893491163aec126 (patch)
tree3a0ed9e5e9ddc5888a78b7f6727fbbbc679cab9e
parentad6a1e55f7b4d558d61c8d937815d461f0172de2 (diff)
downloadgdpr-obfuscator-e721d6f4fcf4877c81e36530c893491163aec126.tar.gz
gdpr-obfuscator-e721d6f4fcf4877c81e36530c893491163aec126.zip
fix utilities import in read.py
-rw-r--r--gdpr_obfuscator/read.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/gdpr_obfuscator/read.py b/gdpr_obfuscator/read.py
index d51c6f3..e527a4f 100644
--- a/gdpr_obfuscator/read.py
+++ b/gdpr_obfuscator/read.py
@@ -2,6 +2,7 @@ import csv
import io
import boto3
from typing import List, Dict
+from .utils import Utilities
class DataReader:
@@ -11,7 +12,7 @@ class DataReader:
"""
def __init__(self):
- pass
+ self.utils = Utilities()
def read_local(self, path) -> List[Dict[str, str]]:
"""
git.ajschof.me — hosted by ajschofield — powered by cgit