generated from daniil-berg/boilerplate-py
9 lines
129 B
Bash
9 lines
129 B
Bash
|
#!/usr/bin/env bash
|
||
|
# Runs type checker.
|
||
|
|
||
|
source "$(dirname $(realpath $0))/util.sh"
|
||
|
|
||
|
echo 'Performing type checks...'
|
||
|
mypy
|
||
|
echo
|