diff --git a/README.md b/README.md index f155aeb..194077f 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/robotpy/main.py b/robotpy/main.py index 0d290d0..86813c8 100644 --- a/robotpy/main.py +++ b/robotpy/main.py @@ -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: