fix: adjust method formatting and add dynamic attribute access #10
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: PyLint | |
on: | |
push: | |
paths: | |
- "**.py" | |
workflow_dispatch: | |
jobs: | |
PEP8: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.12.x" | |
- name: Install libraries | |
run: pip install autopep8 autoflake isort black | |
- name: Check for showstoppers | |
run: | | |
autopep8 --verbose --in-place --recursive --aggressive *.py | |
- name: Remove unused imports | |
run: | | |
autoflake --in-place --recursive --remove-all-unused-imports --ignore-init-module-imports . | |
- name: lint with black | |
run: | | |
black . | |
- uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
commit_message: 'chore: auto fixes' | |
commit_options: '--no-verify' | |
repository: . | |
commit_user_name: gabrielmaialva33 | |
commit_user_email: [email protected] | |
commit_author: Maia <[email protected]>% |