mirror of
https://github.com/microsoft/autogen.git
synced 2025-07-27 10:50:06 +00:00
14 lines
244 B
Bash
14 lines
244 B
Bash
![]() |
#!/usr/bin/env bash
|
||
|
|
||
|
# taken from: https://jaredkhan.com/blog/mypy-pre-commit
|
||
|
|
||
|
# A script for running mypy,
|
||
|
# with all its dependencies installed.
|
||
|
|
||
|
set -o errexit
|
||
|
|
||
|
# Change directory to the project root directory.
|
||
|
cd "$(dirname "$0")"/..
|
||
|
|
||
|
mypy
|