diff options
| author | Alex <git@ajschof.me> | 2025-02-17 16:49:21 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-17 16:49:21 +0000 |
| commit | 219ab7976938f5e6a2804e2096480bb242647b00 (patch) | |
| tree | 3f4c74045d582eb9352a89247e53d7e704c991ea /cli.py | |
| parent | 00917b8ecf67de9e955479be555d74fcc8257020 (diff) | |
| parent | ea70f4889120bc01d2a5416b99e3faba9c28fe9d (diff) | |
| download | gdpr-obfuscator-219ab7976938f5e6a2804e2096480bb242647b00.tar.gz gdpr-obfuscator-219ab7976938f5e6a2804e2096480bb242647b00.zip | |
Merge pull request #4 from ajschofield/deepsource-transform-af52e817
style: format code with Autopep8, Black and Ruff Formatter
Diffstat (limited to 'cli.py')
| -rw-r--r-- | cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -7,6 +7,7 @@ from obfuscator.logger import get_logger # Create the logger logger = get_logger("CLI") + def main(): # Create an argument parser parser = argparse.ArgumentParser(description="gdpr-obfuscator") @@ -41,6 +42,7 @@ def main(): # For debug purposes, log the obfuscated data as JSON for readability logger.debug(json.dumps(obfuscated_data, indent=4)) + # If the script is run directly (as it should be), call the main function if __name__ == "__main__": main() |
