Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ How RobotPy subcommands are implemented

When a user runs `robotpy` or `python -m robotpy`, they are presented with
several subcommands. Each of these subcommands is implemented as a class
that is registered using python's entry point mechanism in the "robotpy"
that is registered using python's entry point mechanism in the "robotpy_cli.YEAR"
group. The registered class must meet the following requirements:

* The docstring of the class is used when the user does --help. The first
Expand Down
2 changes: 1 addition & 1 deletion robotpy/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -240,7 +240,7 @@ def main() -> typing.NoReturn:

cmds: typing.List[typing.Tuple[str, typing.Any]] = []

for entry_point in entry_points(group="robotpy"):
for entry_point in entry_points(group="robotpy_cli.2026"):
try:
cmd_class = entry_point.load()
except Exception:
Expand Down