diff -r f5a17960408a -r d8c7ded575cb src/eric7/MicroPython/Devices/DeviceBase.py --- a/src/eric7/MicroPython/Devices/DeviceBase.py Sat Mar 04 16:32:32 2023 +0100 +++ b/src/eric7/MicroPython/Devices/DeviceBase.py Sat Mar 04 16:37:02 2023 +0100 @@ -1219,6 +1219,8 @@ """ Public method to install packages using 'upip'. + @param packages list of package names + @type list of str @return tuple containing the command output and errors @return tuple of (str, str) """ @@ -1234,7 +1236,7 @@ def mipInstall(self, package, version, mpy): """ - Public method + Public method to install packages using 'mip'. @param package package name @type str