this repo has no description
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Adds support for having multiple plugs in same package (#2855)

authored by

Rithvik Nishad and committed by
GitHub
b20df2e0 72540abe

+1 -1
+1 -1
plugs/manager.py
··· 27 27 logger.error("ADDITIONAL_PLUGS is not a valid JSON") 28 28 29 29 def install(self) -> None: 30 - packages: list[str] = [f"{x.package_name}{x.version}" for x in self.plugs] 30 + packages = {f"{x.package_name}{x.version}" for x in self.plugs} 31 31 if packages: 32 32 subprocess.check_call([sys.executable, "-m", "pip", "install", *packages]) # noqa: S603 33 33