Skip to content

Update model.py

Update model.py #119

Workflow file for this run

name: Lint and Commit
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-python@v2
- run: pip install ruff
- run: |
ruff check .
ruff format .
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'style fixes by ruff'