Skip to content

Update docstring to comply with coding style and max column length #257

Update docstring to comply with coding style and max column length

Update docstring to comply with coding style and max column length #257

Workflow file for this run

name: Python Lint
on: pull_request
jobs:
python-lint:
runs-on: ubuntu-latest
steps:
- name: Checkout Code
uses: actions/checkout@v2
- name: Setup Python Environment
uses: actions/setup-python@v2
with:
python-version: '3.10.14'
- name: Install Dependencies
run: |
pip install -r requirements-dev.txt
- name: Lint Python Code
run: |
ruff format .
ruff check .
- name: Run Pyright
run: |
pyright