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
{{ message }}
This repository was archived by the owner on Apr 14, 2022. It is now read-only.
Only x should be an int, but y is being shown as one too. This will technically raise a ValueError ("not enough values to unpack"), but we shouldn't show any completion on y (which would be misleading).
Likely related is this:
(x, *y) = (1,)
Completing on y should tell you that it's a list, but we show nothing.
Only
x
should be anint
, buty
is being shown as one too. This will technically raise a ValueError ("not enough values to unpack"), but we shouldn't show any completion on y (which would be misleading).Likely related is this:
Completing on
y
should tell you that it's alist
, but we show nothing.Found in #334.
The text was updated successfully, but these errors were encountered: