Skip to content

Commit

Permalink
<add> mypy_extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
kirianguiller committed Oct 16, 2020
1 parent 3c4b34a commit ac7f106
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 5 deletions.
2 changes: 1 addition & 1 deletion app/fizz/fizzbar/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypedDict
from mypy_extensions import TypedDict


class FizzbarInterface(TypedDict, total=False):
Expand Down
2 changes: 1 addition & 1 deletion app/fizz/fizzbaz/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypedDict
from mypy_extensions import TypedDict


class FizzbazInterface(TypedDict, total=False):
Expand Down
2 changes: 1 addition & 1 deletion app/other_api/doodad/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypedDict
from mypy_extensions import TypedDict


class DoodadInterface(TypedDict, total=False):
Expand Down
2 changes: 1 addition & 1 deletion app/other_api/whatsit/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypedDict
from mypy_extensions import TypedDict


class WhatsitInterface(TypedDict, total=False):
Expand Down
2 changes: 1 addition & 1 deletion app/widget/interface.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from typing import TypedDict
from mypy_extensions import TypedDict


class WidgetInterface(TypedDict, total=False):
Expand Down
1 change: 1 addition & 0 deletions requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ Jinja2==2.11.2
jsonschema==3.2.0
MarkupSafe==1.1.1
marshmallow==3.8.0
mypy-extensions==0.4.3
numpy==1.19.2
packaging==20.4
pandas==1.1.3
Expand Down

0 comments on commit ac7f106

Please sign in to comment.