deepfake-ecg-generator-plus / check-with-mypy
dreibh's picture
Minor clean-ups.
ae6d4dd verified
raw
history blame contribute delete
135 Bytes
#!/bin/sh -eu
SCRIPTS="app.py"
for script in $SCRIPTS ; do
echo "$script:"
mypy --strict --ignore-missing-imports $script
done