-
-
Notifications
You must be signed in to change notification settings - Fork 16.7k
Closed
Description
When I run the flask command by itself I get help output with all of my custom commands listed. But when I run flask --help I get the help output with only the built-in flask commands (routes, run, shell). I am using the FLASK_APP environment variable to load the app.
I would think I should get the same help output (showing my custom commands) whether or not I add the --help parameter?
Environment:
- Python 3.12.2
- Flask 3.1.0
Burka111