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
with errors in the delete_assoc functions saying Invalid self argument "Assoc" to attribute function "delete" with type "Callable[[Type[A], int, int], Optional[int]]".
)
Fixes#7926
The fix is straightforward, pass `is_classmethod` where it should be. Also wrap self argument in `Type[...]` only once, not on every iteration over overload items.
The following fails now:
with errors in the delete_assoc functions saying
Invalid self argument "Assoc" to attribute function "delete" with type "Callable[[Type[A], int, int], Optional[int]]"
.Looks like this was introduced in #7860.
The text was updated successfully, but these errors were encountered: