Skip to content

Created a Code to Get the Time for Any zone we just need to type it a… #1409

Created a Code to Get the Time for Any zone we just need to type it a…

Created a Code to Get the Time for Any zone we just need to type it a… #1409

name: Flake8Linter
on: [pull_request]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: Install flake8
run: |
python -m pip install --upgrade pip
pip install flake8
- name: Lint with flake8
run: flake8 . --isolated --exclude=.cache,.venv,.svn,CVS,.bzr,.hg,.git,__pycache__,.tox,**/certificate_generator/**,**/migrations/** --ignore=E203,W503 --max-line-length=119