chore: bump black to 19.10b0 and mypy to 0.770 (#9378)

* Bump black to 19.10b0

* Upgrade mypy to 0.770

* Update how inline type is defined
This commit is contained in:
Jianchao Yang
2020-04-04 13:23:18 -07:00
committed by GitHub
parent 5e55e09e3e
commit 801e2f1777
13 changed files with 36 additions and 37 deletions

View File

@@ -23,7 +23,7 @@ from wtforms import Field
class CommaSeparatedListField(Field):
widget = BS3TextFieldWidget()
data = [] # type: List[str]
data: List[str] = []
def _value(self):
if self.data: