diff options
| author | Alex Schofield <git@ajschof.me> | 2025-02-21 02:19:24 +0000 |
|---|---|---|
| committer | Alex Schofield <git@ajschof.me> | 2025-02-21 02:19:24 +0000 |
| commit | 6e17fcd7a99f6405dad105d83381f80e5951fc83 (patch) | |
| tree | e143160dfb5c2ee95f3ef7381472842ebcd477c1 /gdpr_obfuscator/obfuscate.py | |
| parent | 8465343ef01fd18fd753efa55d770e66addfb46f (diff) | |
| download | gdpr-obfuscator-6e17fcd7a99f6405dad105d83381f80e5951fc83.tar.gz gdpr-obfuscator-6e17fcd7a99f6405dad105d83381f80e5951fc83.zip | |
update funcion/method names & add missing parameters
Diffstat (limited to 'gdpr_obfuscator/obfuscate.py')
| -rw-r--r-- | gdpr_obfuscator/obfuscate.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/gdpr_obfuscator/obfuscate.py b/gdpr_obfuscator/obfuscate.py index 1b6cf0c..0a1d74b 100644 --- a/gdpr_obfuscator/obfuscate.py +++ b/gdpr_obfuscator/obfuscate.py @@ -1,7 +1,7 @@ from typing import List, Dict -def obfuscate( +def obfuscate_data( data: List[Dict[str, str]], pii_fields: List[str] ) -> List[Dict[str, str]]: """ |
