diff options
| author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2025-02-17 16:47:59 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-17 16:47:59 +0000 |
| commit | ea70f4889120bc01d2a5416b99e3faba9c28fe9d (patch) | |
| tree | 3f4c74045d582eb9352a89247e53d7e704c991ea /cli.py | |
| parent | 00917b8ecf67de9e955479be555d74fcc8257020 (diff) | |
| download | gdpr-obfuscator-ea70f4889120bc01d2a5416b99e3faba9c28fe9d.tar.gz gdpr-obfuscator-ea70f4889120bc01d2a5416b99e3faba9c28fe9d.zip | |
style: format code with Autopep8, Black and Ruff Formatter
This commit fixes the style issues introduced in 00917b8 according to the output
from Autopep8, Black and Ruff Formatter.
Details: None
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() |
