Skip to content

Commit c340669

Browse files
committed
Initial work for type checking.
1 parent c74530e commit c340669

3 files changed

Lines changed: 14 additions & 5 deletions

File tree

.flake8

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,12 +3,18 @@ builtins = _
33
exclude =
44
.git,
55
__pycache__,
6-
.venv/,venv/,
6+
.venv/,
7+
venv*/,
78
.tox/,
8-
build/,dist/,*egg,
9+
build/,
10+
dist/,
11+
*egg,
912
docs/conf.py,
10-
zookeeper/
13+
zookeeper/,
1114
# See black's documentation for E203
1215
max-line-length = 79
13-
extend-ignore = BLK100,E203
16+
# I am not sure what version of flake8 hound is using
17+
# but it gives a lot of undefined names for comments (F821)
18+
# and redefinition of unused variables (F811)
19+
extend-ignore = BLK100,E203,F811,F821
1420

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,12 @@ zookeeper/
3030
.project
3131
.pydevproject
3232
.tox
33-
venv
33+
venv*/
3434
/.settings
3535
/.metadata
36+
__pycache__/
3637

3738
!.gitignore
3839
!.git-blame-ignore-revs
3940

41+
.vscode/settings.json

setup.cfg

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -81,6 +81,7 @@ docs =
8181

8282
typing =
8383
mypy>=0.991
84+
types-gevent
8485

8586
alldeps =
8687
%(dev)s

0 commit comments

Comments
 (0)