Fix variable name type in data_exploration_user.py #5
This file contains hidden or 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: CI | |
| on: [push] | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - uses: actions/setup-python@v4 | |
| with: | |
| python-version: '3.10' | |
| - run: pip install flake8 | |
| - run: flake8 user_post_emulators/ --count --max-line-length=200 --statistics --ignore=W292,W293,W391,F841,E231,E305,E122,E121,E126,E131,E123,E124,E125,E128,E501,W291,E203,E241,E261,F401 |