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
File "C:\Users\user\mu\mu\wheels\__init__.py", line 140, in pip_download
"Pip was unable to download %s" % pip_identifiers
TypeError: not all arguments converted during string formatting
Essentially pip_identifiers can be something like a tuple and that will fail the formatting, we can move to "{}".format() to avoid that issue.
From:
Essentially
pip_identifiers
can be something like a tuple and that will fail the formatting, we can move to"{}".format()
to avoid that issue.https://github.com/mu-editor/mu/blob/master/mu/wheels/__init__.py#L105
The text was updated successfully, but these errors were encountered: