File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ How RobotPy subcommands are implemented
2323
2424When a user runs ` robotpy ` or ` python -m robotpy ` , they are presented with
2525several subcommands. Each of these subcommands is implemented as a class
26- that is registered using python's entry point mechanism in the "robotpy"
26+ that is registered using python's entry point mechanism in the "robotpy-YEAR "
2727group. The registered class must meet the following requirements:
2828
2929* The docstring of the class is used when the user does --help. The first
Original file line number Diff line number Diff line change @@ -240,7 +240,7 @@ def main() -> typing.NoReturn:
240240
241241 cmds : typing .List [typing .Tuple [str , typing .Any ]] = []
242242
243- for entry_point in entry_points (group = "robotpy" ):
243+ for entry_point in entry_points (group = "robotpy-2026 " ):
244244 try :
245245 cmd_class = entry_point .load ()
246246 except Exception :
You can’t perform that action at this time.
0 commit comments