Open diceroll123 opened 6 months ago
This PR fixes some missing types that PyRight yells about.
Even if the function return is annotated Set[str], if you return an untyped set variable, the return value will have an unknown type.
Set[str]
This PR fixes some missing types that PyRight yells about.
Even if the function return is annotated
Set[str]
, if you return an untyped set variable, the return value will have an unknown type.