Skip to content

Commit

Permalink
Merge pull request #409 from bluetech/pm-no-slots
Browse files Browse the repository at this point in the history
manager: remove `__slots__` from `PluginManager`
  • Loading branch information
bluetech authored Jun 20, 2023
2 parents 4cfc676 + 3a7a015 commit fea9daa
Showing 1 changed file with 0 additions and 10 deletions.
10 changes: 0 additions & 10 deletions src/pluggy/_manager.py
Original file line number Diff line number Diff line change
Expand Up @@ -92,16 +92,6 @@ class PluginManager:
which will subsequently send debug information to the trace helper.
"""

__slots__ = (
"project_name",
"_name2plugin",
"_plugin2hookcallers",
"_plugin_distinfo",
"trace",
"hook",
"_inner_hookexec",
)

def __init__(self, project_name: str) -> None:
self.project_name: Final = project_name
self._name2plugin: Final[dict[str, _Plugin]] = {}
Expand Down

0 comments on commit fea9daa

Please sign in to comment.