Skip to content

Commit

Permalink
style(ruff): remove stale noqa comments
Browse files Browse the repository at this point in the history
  • Loading branch information
pivoshenko committed Oct 23, 2023
1 parent dcfe656 commit d241638
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/poetry_plugin_dotenv/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ class DotenvPlugin(ApplicationPlugin):
def activate(self, application: Application) -> None: # pragma: no cover
"""Activate the plugin."""

application.event_dispatcher.add_listener(COMMAND, listener=self.load) # type: ignore[union-attr, arg-type] # noqa: E501
application.event_dispatcher.add_listener(COMMAND, listener=self.load) # type: ignore[union-attr, arg-type]

def load(self, event: ConsoleCommandEvent, *args, **kwargs) -> None:
"""Load a dotenv file."""
Expand Down

0 comments on commit d241638

Please sign in to comment.