What do you see as an issue?
The docstring for the S3ListOperator is incorrect for the apply_wildcard parameter:
:param apply_wildcard: whether to treat '*' as a wildcard or a plain symbol in the prefix.
By default SSL certificates are verified.
You can provide the following values:
- ``False``: do not validate SSL certificates. SSL will still be used
(unless use_ssl is False), but SSL certificates will not be
verified.
- ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to uses.
You can specify this argument if you want to use a different
CA cert bundle than the one used by botocore.
Solving the problem
It looks as though most of the docstring should actually be part of the verify and not the apply_wildcard one. Moving the following lines up under the verify parameter should resolve:
By default SSL certificates are verified.
You can provide the following values:
- ``False``: do not validate SSL certificates. SSL will still be used
(unless use_ssl is False), but SSL certificates will not be
verified.
- ``path/to/cert/bundle.pem``: A filename of the CA cert bundle to uses.
You can specify this argument if you want to use a different
CA cert bundle than the one used by botocore.
Anything else
No response
Are you willing to submit PR?
Code of Conduct
What do you see as an issue?
The docstring for the S3ListOperator is incorrect for the
apply_wildcardparameter:Solving the problem
It looks as though most of the docstring should actually be part of the
verifyand not theapply_wildcardone. Moving the following lines up under theverifyparameter should resolve:Anything else
No response
Are you willing to submit PR?
Code of Conduct