Skip to content

Commit 8ba2ac1

Browse files
authored
Merge pull request #139 from michaelbukachi/typing_support
feat: Add types
2 parents 7253932 + 04ac9cd commit 8ba2ac1

File tree

6 files changed

+176
-91
lines changed

6 files changed

+176
-91
lines changed

Makefile

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,14 @@
1-
.PHONY: test pep8 clean install build publish tree env
1+
.PHONY: test pep8 types clean install build publish tree env
22

33
test: pep8
44
py.test --cov=flask_googlemaps -l --tb=short --maxfail=1 tests/
55

66
pep8:
77
@flake8 flask_googlemaps --ignore=F403
88

9+
types:
10+
@mypy --py2 flask_googlemaps
11+
912
clean:
1013
@find ./ -name '*.pyc' -exec rm -f {} \;
1114
@find ./ -name 'Thumbs.db' -exec rm -f {} \;

0 commit comments

Comments
 (0)