Skip to content

Commit

Permalink
Fix initial importlib check suite load
Browse files Browse the repository at this point in the history
Fixes loading initial available checkers via importlib. An invalid
argument had been passed with kwarg `groups` instead of `group`.
  • Loading branch information
benjwadams committed Apr 15, 2024
1 parent 6aa0f26 commit b551c2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion compliance_checker/suite.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ def _get_generator_plugins(cls):

if not hasattr(cls, "suite_generators"):
gens = importlib_metadata.entry_points(
groups="compliance_checker.generators",
group="compliance_checker.generators",
)
cls.suite_generators = [x.load() for x in gens]

Expand Down

0 comments on commit b551c2f

Please sign in to comment.