mirror of https://github.com/microsoft/autogen.git
mypy in pre-commit fixed (#2117)
* mypy in pre-commit fixed * polishing
This commit is contained in:
parent
a6a7409ac8
commit
fafc29eeef
|
@ -53,7 +53,7 @@ repos:
|
||||||
language: python
|
language: python
|
||||||
# use your preferred Python version
|
# use your preferred Python version
|
||||||
# language_version: python3.8
|
# language_version: python3.8
|
||||||
additional_dependencies: [".[types]"]
|
additional_dependencies: []
|
||||||
types: [python]
|
types: [python]
|
||||||
# use require_serial so that script
|
# use require_serial so that script
|
||||||
# is only called once per commit
|
# is only called once per commit
|
||||||
|
|
|
@ -10,4 +10,6 @@ set -o errexit
|
||||||
# Change directory to the project root directory.
|
# Change directory to the project root directory.
|
||||||
cd "$(dirname "$0")"/..
|
cd "$(dirname "$0")"/..
|
||||||
|
|
||||||
|
pip install -q -e .[types]
|
||||||
|
|
||||||
mypy
|
mypy
|
||||||
|
|
Loading…
Reference in New Issue