Skip to content
Snippets Groups Projects

F mypy

Merged Henrik tom Wörden requested to merge f-mypy into dev
2 files
+ 9
3
Compare changes
  • Side-by-side
  • Inline

Files

+ 5
1
@@ -32,7 +32,7 @@ doc:
install:
@echo "Not implemented yet, use pip for installation."
check: style lint
check: style lint mypy
.PHONY: check
style:
@@ -43,6 +43,10 @@ lint:
pylint --unsafe-load-any-extension=y -d all -e E,F src/linkahead/common
.PHONY: lint
mypy:
mypy src/linkahead
.PHONY: mypy
unittest:
tox -r
.PHONY: unittest
Loading