diff options
| author | deepsource-autofix[bot] <62050782+deepsource-autofix[bot]@users.noreply.github.com> | 2025-02-14 13:47:05 +0000 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2025-02-14 13:47:05 +0000 |
| commit | 0f29d52ba932eeed2ae5826c31cbe9a379fd4579 (patch) | |
| tree | dfb7e6025607c503fb7e5e70abf0f8ba91e7e212 /cli.py | |
| parent | 6182930c3ea53932c6153dd101264cb90c90f979 (diff) | |
| download | gdpr-obfuscator-0f29d52ba932eeed2ae5826c31cbe9a379fd4579.tar.gz gdpr-obfuscator-0f29d52ba932eeed2ae5826c31cbe9a379fd4579.zip | |
style: format code with Autopep8, Black and Ruff Formatter
This commit fixes the style issues introduced in 6182930 according to the output
from Autopep8, Black and Ruff Formatter.
Details: https://github.com/ajschofield/gdpr-obfuscator/pull/1
Diffstat (limited to 'cli.py')
| -rw-r--r-- | cli.py | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -4,6 +4,7 @@ from obfuscator.logger import get_logger logger = get_logger("CLI") + def main(): parser = argparse.ArgumentParser(description="gdpr-obfuscator") # Require user to either choose a local file or an S3 object @@ -20,5 +21,6 @@ def main(): else: logger.debug("User chose to read CSV from S3") + if __name__ == "__main__": main() |
