Typing with `|` instead of `Union`/`Optional`
-
int | stris the shorthand ofUnion[int, str]. Using that shorthand is recommended, so we can replace allUnionby| -
int | Noneis equivalent toOptional[int]. So we can also replace allOptionalby|
Edited by Manon Blanco