bell-violation / README.md
roszcz's picture
Move violation to an outside repo
cc47114
|
raw
history blame
856 Bytes
---
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
```