Skip to content

Commit 0d9b020

Browse files
committed
Makefile: don't warn for unused ignores
1 parent 1f25e52 commit 0d9b020

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -160,7 +160,7 @@ mypy2: ${PYSOURCES}
160160
ln -s $(shell python -c 'from __future__ import print_function; import schema_salad; import os.path; print(os.path.dirname(schema_salad.__file__))') \
161161
typeshed/2and3/schema_salad
162162
MYPYPATH=$MYPYPATH:typeshed/2.7:typeshed/2and3 mypy --py2 --disallow-untyped-calls \
163-
--warn-redundant-casts --warn-unused-ignores \
163+
--warn-redundant-casts \
164164
cwltool
165165

166166
mypy3: ${PYSOURCES}
@@ -171,7 +171,7 @@ mypy3: ${PYSOURCES}
171171
ln -s $(shell python3 -c 'from __future__ import print_function; import schema_salad; import os.path; print(os.path.dirname(schema_salad.__file__))') \
172172
typeshed/2and3/schema_salad
173173
MYPYPATH=$MYPYPATH:typeshed/3:typeshed/2and3 mypy --disallow-untyped-calls \
174-
--warn-redundant-casts --warn-unused-ignores \
174+
--warn-redundant-casts \
175175
cwltool
176176

177177
FORCE:

0 commit comments

Comments
 (0)