Skip to content

Commit

Permalink
Support newer Pythons
Browse files Browse the repository at this point in the history
  • Loading branch information
mdboom committed Jul 8, 2024
1 parent f8f93c1 commit 6e75442
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pyperf/_hooks.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def get_hooks():
if sys.version_info[:2] < (3, 10):
group = entry_points[hook_prefix]
else:
group = entry_points.select(hook_prefix)
group = entry_points.select(group=hook_prefix)
return (x.load() for x in group)


Expand Down

0 comments on commit 6e75442

Please sign in to comment.