Skip to content

Commit

Permalink
Fix problem uninstalling MicroPython packages
Browse files Browse the repository at this point in the history
  • Loading branch information
aivarannamaa committed May 14, 2022
1 parent 7ad799d commit 36a7941
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 1 deletion.
1 change: 1 addition & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ Version history
* Fix support for remote Python 3 over SSH (regression introduced in one of the 4.0.0 betas), #2249
* Support CircuitPython with micro:bit, #2251
* Avoid wobbling of AutomaticScrollbar, helpful report by @TooLazy0x00, #2258
* Fix problem uninstalling MicroPython packages
* Updated Estonian, Thai and Brazilian Portuguese translations

4.0.0b2 (2022-04-09)
Expand Down
1 change: 0 additions & 1 deletion thonny/plugins/micropython/mp_back.py
Original file line number Diff line number Diff line change
Expand Up @@ -911,7 +911,6 @@ def _cmd_install_distributions(self, cmd):
return {"distributions": new_state}

def _cmd_uninstall_distributions(self, cmd):
assert not any([arg.startswith("-") for arg in cmd.args])
try:
new_state = self._perform_pipkin_operation_and_list(
command="uninstall", packages=cmd.args, yes=True
Expand Down

0 comments on commit 36a7941

Please sign in to comment.