Skip to content

Commit

Permalink
Fix scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
raccube committed Aug 6, 2024
1 parent 0c9bc11 commit 8aecd92
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion script/linting/lint
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
if [ -z "$FLAKE8" ]; then
FLAKE8=flake8
fi
exec "$FLAKE8" main.py "$@"
exec "$FLAKE8" src/main.py "$@"
2 changes: 1 addition & 1 deletion script/typing/check
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,4 @@
if [ -z "$MYPY" ]; then
MYPY=mypy
fi
exec "$MYPY" main.py
exec "$MYPY" src/main.py

0 comments on commit 8aecd92

Please sign in to comment.