Skip to content

Commit

Permalink
breaking change
Browse files Browse the repository at this point in the history
  • Loading branch information
sainak committed Sep 24, 2024
1 parent 2bec57d commit dc87186
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions plugs/manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,10 @@ def install(self) -> None:
if packages:
subprocess.check_call([sys.executable, "-m", "pip", "install", *packages]) # noqa: S603

if True:
return True
return False

def add_plug(self, plug: Plug) -> None:
if not isinstance(plug, Plug):
msg = "plug must be an instance of Plug"
Expand Down

0 comments on commit dc87186

Please sign in to comment.