You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently using _ as a variable name is not supported in PuyaPy as MyPy treats this as a union type, and union types are not supported in PuyaPy. However this is a common python convention and should be supported.
Current work around is to use a unique var name prefixed with _ e.g. _ignored
The text was updated successfully, but these errors were encountered:
Currently using
_
as a variable name is not supported in PuyaPy as MyPy treats this as a union type, and union types are not supported in PuyaPy. However this is a common python convention and should be supported.Current work around is to use a unique var name prefixed with
_
e.g._ignored
The text was updated successfully, but these errors were encountered: