Skip to content

Rename 55111188_p0.jpg to 55111188_p011.jpg #25

Rename 55111188_p0.jpg to 55111188_p011.jpg

Rename 55111188_p0.jpg to 55111188_p011.jpg #25

Workflow file for this run

name: PyLint
on: push
jobs:
PEP8:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Python
uses: actions/setup-python@v1
with:
python-version: 3.9
- name: Install Python lint libraries
run: |
pip install autoflake isort black
- name: Remove unused imports and variables
run: |
autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports .
# commit change
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'ArmanGG01: auto fixes'
commit_options: '--no-verify --signoff'
repository: .
commit_user_name: ArmanGG01
commit_user_email: muhammadarrif2f@gmail.com
commit_author: ArmanGG01 <muhammadarrif2f@gmail.com>