"""Entry point for the sample_python CLI.
Mirrors the `[project.scripts]` target in pyproject.toml
(`sample-python = "sample_python.cli:main"`). Prints a `--help` usage line so
skillpack's invocation check can capture it.
"""importsysdefmain()->None:argv=sys.argv[1:]if"--help"inargvor"-h"inargv:print("Usage: sample-python [--lint] [--fix]")returnprint("sample-python")if__name__=="__main__":main()