diff options
| author | Stephen Finucane <sfinucan@redhat.com> | 2023-05-08 11:34:37 +0100 |
|---|---|---|
| committer | Stephen Finucane <sfinucan@redhat.com> | 2023-05-10 10:51:30 +0100 |
| commit | 7ca43885c26d9dd7903e7015c0a31f3486730eea (patch) | |
| tree | fe4bb785229fe2d904d523a147559a83e6e32411 /openstackclient/image/client.py | |
| parent | 329296cedd0a64e9f65b080cef749b65256db85b (diff) | |
| download | python-openstackclient-7ca43885c26d9dd7903e7015c0a31f3486730eea.tar.gz | |
Blacken openstackclient.image
Black used with the '-l 79 -S' flags.
A future change will ignore this commit in git-blame history by adding a
'git-blame-ignore-revs' file.
Change-Id: I6420ec6fd550903b03083b9b1f8391511913c86f
Signed-off-by: Stephen Finucane <sfinucan@redhat.com>
Diffstat (limited to 'openstackclient/image/client.py')
| -rw-r--r-- | openstackclient/image/client.py | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/openstackclient/image/client.py b/openstackclient/image/client.py index 9a0d7bac..a3da099a 100644 --- a/openstackclient/image/client.py +++ b/openstackclient/image/client.py @@ -32,7 +32,6 @@ API_VERSIONS = { def make_client(instance): - LOG.debug( 'Image client initialized using OpenStack SDK: %s', instance.sdk_connection.image, @@ -46,7 +45,7 @@ def build_option_parser(parser): '--os-image-api-version', metavar='<image-api-version>', default=utils.env('OS_IMAGE_API_VERSION'), - help=_('Image API version, default=%s (Env: OS_IMAGE_API_VERSION)') % - DEFAULT_API_VERSION, + help=_('Image API version, default=%s (Env: OS_IMAGE_API_VERSION)') + % DEFAULT_API_VERSION, ) return parser |
