diff options
Diffstat (limited to 'gdpr_obfuscator/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 e527a4f..27f2a3d 100644 --- a/gdpr_obfuscator/read.py +++ b/gdpr_obfuscator/read.py @@ -37,7 +37,8 @@ class DataReader: read_csv_content = self.read_string(content) return read_csv_content - def read_string(self, content: str) -> List[Dict[str, str]]: + @staticmethod + def read_string(content: str) -> List[Dict[str, str]]: """ A method to read CSV data from a string and return the data as a list of dictionaries. |
