Spaces:
Sleeping
Sleeping
title: Bell Violation | |
emoji: π | |
colorFrom: purple | |
colorTo: indigo | |
sdk: streamlit | |
sdk_version: 1.39.0 | |
app_file: app.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 | |
``` | |