Skip to content

Update base_agent.py #1

Update base_agent.py

Update base_agent.py #1

Workflow file for this run

# Python Style Check
# This workflow checks Python code style using flake8
name: Python Style Check
on:
push:
paths:
- '**.py'
pull_request:
paths:
- '**.py'
jobs:
flake8-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.11'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 src/ --count --select=E9,F63,F7,F82 --show-source --statistics