Skip to content
This repository was archived by the owner on May 11, 2025. It is now read-only.

Update dependency MarkupSafe to v3 #59

Update dependency MarkupSafe to v3

Update dependency MarkupSafe to v3 #59

Workflow file for this run

name: Format Python Code
on:
push:
branches:
- '**'
jobs:
python-code-format:
runs-on: ubuntu-24.04
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v4
with:
python-version: "3.10"
architecture: "x64"
- name: Display Python version
run: python --version
- name: Install packages
run: pip install black autopep8 isort
- name: Formatter
run: |
black .
autopep8 --recursive --in-place --aggressive --aggressive .
isort .
- name: Create Pull Request
uses: peter-evans/create-pull-request@v7
with:
commit-message: Auto code format
title: Fixes by format action
body: This is an auto-generated PR with fixes.
labels: automated pr
branch: python-code-format-patches