Skip to content

Commit

Permalink
annotate dagster.builtins.Nothing with correct type (#7546)
Browse files Browse the repository at this point in the history
  • Loading branch information
smackesey committed Apr 23, 2022
1 parent 3bb37d3 commit 7599886
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion python_modules/dagster/dagster/builtins.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
Bool = bool
Float = float
Int = int
Nothing = type(None)
Nothing: typing.Type[None] = type(None)
String = str


Expand Down

0 comments on commit 7599886

Please sign in to comment.