Skip to content

Commit e5bce5e

Browse files
committed
Update check/mypy to remove explicit mypy.ini argument
Now that the options are in pyproject.toml, the explicit argument is no longer necessary.
1 parent c99faf4 commit e5bce5e

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

check/mypy

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
# limitations under the License.
1515

1616
################################################################################
17-
# Runs mypy on the repository using a preconfigured mypy.ini file.
17+
# Runs mypy on the repository starting from the root.
1818
#
1919
# Usage:
2020
# check/mypy [--flags]
@@ -25,7 +25,7 @@ cd "$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" || exit 1
2525
cd "$(git rev-parse --show-toplevel)" || exit 1
2626

2727
echo -e -n "\033[31m"
28-
mypy --config-file=dev_tools/conf/mypy.ini "$@" .
28+
mypy "$@" .
2929
result=$?
3030
echo -e -n "\033[0m"
3131

0 commit comments

Comments
 (0)