diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-21 02:50:10 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-21 02:50:10 +0000 |
| commit | e721d6f4fcf4877c81e36530c893491163aec126 (patch) | |
| tree | 3a0ed9e5e9ddc5888a78b7f6727fbbbc679cab9e | |
| parent | ad6a1e55f7b4d558d61c8d937815d461f0172de2 (diff) | |
| download | gdpr-obfuscator-e721d6f4fcf4877c81e36530c893491163aec126.tar.gz gdpr-obfuscator-e721d6f4fcf4877c81e36530c893491163aec126.zip | |
fix utilities import in read.py
| -rw-r--r-- | gdpr_obfuscator/read.py | 3 |
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]]: """ |
