diff options
| author | Alex <git@ajschof.me> | 2025-02-21 04:23:25 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-21 04:23:25 +0000 |
| commit | 202bc5c82f446c514c9673f51ff5c0bf9a410cca (patch) | |
| tree | 84aed299417974437ab2dddecb561c7af7955a28 /gdpr_obfuscator/utils.py | |
| parent | 9bdeb7d3e8e68aa5da3ab29ec41b6ffd334be2b9 (diff) | |
| parent | 7cc98bff4095bd06838c8aa6d18cf5f62aff1979 (diff) | |
| download | gdpr-obfuscator-202bc5c82f446c514c9673f51ff5c0bf9a410cca.tar.gz gdpr-obfuscator-202bc5c82f446c514c9673f51ff5c0bf9a410cca.zip | |
Merge pull request #11 from ajschofield/deepsource-autofix-5fdb5f46
refactor: change methods not using its bound instance to staticmethods
Diffstat (limited to 'gdpr_obfuscator/utils.py')
| -rw-r--r-- | gdpr_obfuscator/utils.py | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/gdpr_obfuscator/utils.py b/gdpr_obfuscator/utils.py index d305daf..9736d7c 100644 --- a/gdpr_obfuscator/utils.py +++ b/gdpr_obfuscator/utils.py @@ -8,13 +8,15 @@ class Utilities: def __init__(self, logger=None): pass - def get_s3_path(self, uri): + @staticmethod + def get_s3_path(uri): parts = uri.replace("s3://", "").split("/") bucket = parts.pop(0) key = "/".join(parts) return bucket, key - def create_byte_stream(self, data: List[Dict[str, str]]) -> bytes: + @staticmethod + def create_byte_stream(data: List[Dict[str, str]]) -> bytes: if not data: return b"" |
