Remove unnecessary double-load of config_json. #975
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: undefined_names | |
on: [pull_request, push] | |
jobs: | |
undefined_names: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-python@v5 | |
- run: pip install --upgrade pip | |
- run: pip install flake8 | |
- run: flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics |