Skip to content

Commit

Permalink
Move files discovery to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Dickinson committed Jun 2, 2024
1 parent 898d0be commit 3ea0aa9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ disallow_untyped_calls = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
warn_unused_configs = true
files = "src/"
files = [ "src/" ]
exclude = [
"src/meshdb/utils/spreadsheet_import/.*",
"src/meshapi/tests/.*",
Expand Down
2 changes: 1 addition & 1 deletion tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ def lint(context):
context.run("black . --check")
context.run("isort . --check")
context.run("flake8 src")
context.run("mypy src")
context.run("mypy")


@task
Expand Down

0 comments on commit 3ea0aa9

Please sign in to comment.