Update dds_web/utils.py #7599
This file contains 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
# Black: Python linter | |
# This action lints python using black - a python code formatter. | |
# https://github.com/psf/black | |
# This does not format the code, this only detects and informs on issues. | |
# To format with black, run `black .` locally in the repository. | |
--- | |
name: Black | |
on: [push, pull_request] | |
env: | |
INPUT_VERSION: 24.1.1 | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: psf/black@stable | |
with: | |
version: ${{ env.INPUT_VERSION }} |