Skip to content

Commit

Permalink
Plugin: remove redundant raise of NotImplementedError
Browse files Browse the repository at this point in the history
  • Loading branch information
TheSven73 committed Sep 28, 2024
1 parent ecf68ec commit 69dbca2
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/poetry/plugins/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,5 +20,4 @@ class Plugin(BasePlugin):
group = "poetry.plugin"

@abstractmethod
def activate(self, poetry: Poetry, io: IO) -> None:
raise NotImplementedError()
def activate(self, poetry: Poetry, io: IO) -> None: ...

0 comments on commit 69dbca2

Please sign in to comment.