Skip to content

There's still some hardcoding of coordinates #6

There's still some hardcoding of coordinates

There's still some hardcoding of coordinates #6

Workflow file for this run

name: Python Linting and Formatting
on: [push, pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: "3.x"
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install ruff black
- name: Lint with Ruff
run: ruff .
- name: Format with Black
run: black -l 80 .