Remove deprecated typing imports from generated SDK sources #9362
Workflow file for this run
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
name: Black | |
on: pull_request | |
jobs: | |
Linter: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Run checks | |
run: | | |
pipx install $(grep "^black" ./cvat-cli/requirements/development.txt) | |
echo "Black version: $(black --version)" | |
black --check --diff . |