pallets / flask

The Python micro framework for building web applications.
https://flask.palletsprojects.com
BSD 3-Clause "New" or "Revised" License
67.87k stars 16.2k forks source link

Provide more clear flask -e, --env-file flag desription #5532

Open differencialx opened 3 months ago

differencialx commented 3 months ago

Currently the description for flask cli command -e, --env-file flag is misleading. I understand that this functionality is covered and perfectly explained in docs, but in case you are not familiar with documentation you will just use flask --help command to read which flags are allowed.

This PR just adds few sentences to make -e, --env-file flag description more clear and exhaustive. Before: image After image

Initial PR with for -e, --env-file flag: https://github.com/pallets/flask/pull/4646