gitextract_foj3g7v5/ ├── .flake8 ├── .github/ │ └── workflows/ │ └── test.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE.rst ├── MANIFEST.in ├── README.rst ├── flake8_black.py ├── pyproject.toml ├── requirements.txt └── tests/ ├── conflicting_configurations/ │ ├── .flake8 │ ├── goodbye.py │ ├── hello.py │ └── pyproject.toml ├── non_conflicting_configurations/ │ ├── .flake8 │ ├── hello.py │ └── pyproject.toml ├── run_tests.sh ├── test_cases/ │ ├── hello_world.py │ ├── mixed_tab_spaces.py │ ├── no_closing_bracket.py │ └── stub.pyi ├── test_changes/ │ ├── black_preview.py │ ├── black_preview.txt │ ├── commas.py │ ├── commas.txt │ ├── hello_world.py │ ├── hello_world.txt │ ├── hello_world_EOF.py │ └── hello_world_EOF.txt ├── with_bad_toml/ │ ├── hello_world.py │ ├── hello_world.txt │ └── pyproject.toml ├── with_pyproject_toml/ │ ├── ignoring_toml.txt │ ├── ordinary_quotes.py │ └── pyproject.toml └── without_pyproject_toml/ └── ordinary_quotes.py