Skip to content

Merge branch 'dev' into DDS-1822-Fix-CVE-2023-45803 #6351

Merge branch 'dev' into DDS-1822-Fix-CVE-2023-45803

Merge branch 'dev' into DDS-1822-Fix-CVE-2023-45803 #6351

Workflow file for this run

# 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]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: psf/black@stable