put in an absolute value for the psuedo prediction_std #1969
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Python Linting | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Set up Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.x' | |
| - name: Install dependencies | |
| run: | | |
| pip install flake8 black | |
| - name: Run Black (Code Formatting) | |
| run: | | |
| black --line-length=120 src/workbench applications tests | |
| - name: Run Flake8 (Linting) | |
| run: | | |
| flake8 --exclude '*generated*' src/workbench applications tests | |