Created
March 1, 2018 15:04
-
-
Save yothinix/6461062ab5a98640168c9bb3bf07d126 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def f(l: List[str]) -> None: | |
s = l.pop() # reveal_type(s) -> str | |
def g(message: str = None) -> None: | |
if message is None: | |
return | |
reveal_type(message) # -> str |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment