Skip to content

update transcode.py #1055

update transcode.py

update transcode.py #1055

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.11
- name: Install Python lint libraries
run: |
pip install autopep8 autoflake isort black
- name: Check for showstoppers
run: autopep8 --verbose --in-place --recursive --aggressive --aggressive .
- name: Remove unused imports and variables
run: autoflake --in-place --recursive --remove-all-unused-imports --remove-unused-variables --ignore-init-module-imports .
- name: lint with isort and black
run: |
isort bot
black --fast bot
# commit changes
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: 'pyLint: auto-fixes'
commit_options: '--no-verify'
repository: .
commit_user_name: Nubuki-all
commit_user_email: 121189493+Nubuki-all@users.noreply.github.com
commit_author: Nubuki-all <121189493+Nubuki-all@users.noreply.github.com>