Skip to content

Commit

Permalink
pylint tools
Browse files Browse the repository at this point in the history
  • Loading branch information
Kakadus committed Oct 23, 2023
1 parent 4f3e437 commit 43839c4
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
uses: ./.github/setup_python

- name: Run linter
run: pylint evap -j 0
run: pylint evap tools -j 0


formatter:
Expand Down
2 changes: 1 addition & 1 deletion evap/evaluation/management/commands/lint.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@ class Command(BaseCommand):
requires_migrations_checks = False

def handle(self, *args, **options):
subprocess.run(["pylint", "evap"], check=False) # nosec
subprocess.run(["pylint", "evap", "tools"], check=False) # nosec
2 changes: 1 addition & 1 deletion tools/enrollment_preprocessor.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
from argparse import ArgumentParser
from dataclasses import dataclass
from io import BytesIO
from typing import Iterator, TextIO
from typing import TextIO

from openpyxl import load_workbook
from openpyxl.cell import Cell
Expand Down

0 comments on commit 43839c4

Please sign in to comment.