Spaces:
Sleeping
Sleeping
File size: 856 Bytes
9008481 33f466b 9008481 cc47114 9008481 33f466b |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 |
---
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
```
|