--- title: Bell Violation emoji: 🚀 colorFrom: purple colorTo: indigo sdk: streamlit sdk_version: 1.39.0 app_file: main.py pinned: false license: mit short_description: Data Science Internship Challenge 2024 --- ### Code Style This repository uses pre-commit hooks with forced python formatting ([black](https://github.com/psf/black), [flake8](https://flake8.pycqa.org/en/latest/), and [isort](https://pycqa.github.io/isort/)): ```sh pip install pre-commit pre-commit install ``` Whenever you execute `git commit` the files altered / added within the commit will be checked and corrected. `black` and `isort` can modify files locally - if that happens you have to `git add` them again. You might also be prompted to introduce some fixes manually. To run the hooks against all files without running `git commit`: ```sh pre-commit run --all-files ```