Skip to content

Commit

Permalink
Merge pull request #42 from freezestudio/patch-1
Browse files Browse the repository at this point in the history
Update internals.md
  • Loading branch information
erictraut authored Apr 1, 2019
2 parents de035a2 + 3566b6b commit 5da743b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/internals.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ Pyright attempts to infer the types of global (module-level) variables, class va
Pyright supports type constraints (sometimes called “path constraints”) to track assumptions that apply within certain paths of code flow. For example, consider the following code:
```python

def (a: Optional[Union[str, List[str]]:
def (a: Optional[Union[str, List[str]]) -> None:
if isinstance(a, str):
log(a)
elif a:
Expand Down

0 comments on commit 5da743b

Please sign in to comment.