Advertisement
Guest User

Untitled

a guest
Oct 17th, 2019
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. from typing import List, Mapping, Union
  2.  
  3. JNumber = Union[int, float]
  4. JSON = Union[JNumber, str, bool, None, Mapping[str, 'JSON'], List['JSON']]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement