salt-ext-modules-vmware
salt-ext-modules-vmware copied to clipboard
get rid of `vmc_constants.py`
80% of the variables in vmc_constants.py
are only used one time, and 95% of the time the variables are re-used, they are like GET_REQUEST_METHOD = "get"
, and it's better to use "get" in the code directly.
"get" as a http method is not changing, and request(method="get"
is perfectly clear.