Skip to content

Commit

Permalink
fix(knime.py): plugins_to_install from KPlugins -> str
Browse files Browse the repository at this point in the history
  • Loading branch information
breakthewall committed Dec 20, 2023
1 parent 2139201 commit 6bd11f4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions retropath2_wrapper/knime.py
Original file line number Diff line number Diff line change
Expand Up @@ -346,8 +346,9 @@ def install(self, logger: Logger = getLogger(__name__)) -> int:
plugins_to_remove = list(
set(plugins_installed_names).intersection(set(plugins_to_install_names))
)
# transform lists of KPlungins into list of str
plugins_to_install = [str(pkg) for pkg in plugins_to_install]

# transform lists of KPlugins into list of str
plugins_to_install = [str(pkg) for pkg in plugins_to_install]

r_code = self.manage_pkgs(
plugins_to_install,
Expand Down

0 comments on commit 6bd11f4

Please sign in to comment.