Skip to content

Commit a163920

Browse files
CSS hotfix for cluster status (#423)
CSS hotfix for cluster status CSS Hotfix + black for linting + isort Reviewed-by: Anton Sidelnikov
1 parent 51d3bf4 commit a163920

File tree

11 files changed

+357
-245
lines changed

11 files changed

+357
-245
lines changed

.stestr.blacklist.functional

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,4 +22,5 @@ otcextensions.tests.functional.sdk.obs*
2222
otcextensions.tests.functional.sdk.cts.v1.test_tracker*
2323
otcextensions.tests.functional.sdk.auto_scaling.v1.test_group*
2424
otcextensions.tests.functional.sdk.sfsturbo*
25-
tests.functional.osclient.vpc.v1.test_peering*
25+
otcextensions.tests.functional.osclient.vpc.v1.test_peering*
26+
otcextensions.tests.functional.sdk.waf.v1.test_domain*

otcextensions/osclient/css/v1/cert.py

Lines changed: 7 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -11,21 +11,20 @@
1111
# under the License.
1212
#
1313
'''CSS ELK cluster v1 action implementations'''
14-
import logging
1514
import base64
15+
import logging
1616

1717
from osc_lib import utils
1818
from osc_lib.command import command
19-
from otcextensions.common import sdk_utils
2019

20+
from otcextensions.common import sdk_utils
2121
from otcextensions.i18n import _
2222

2323
LOG = logging.getLogger(__name__)
2424

2525

2626
def _get_columns(item):
27-
column_map = {
28-
}
27+
column_map = {}
2928
return sdk_utils.get_osc_show_columns_for_sdk_resource(item, column_map)
3029

3130

@@ -38,8 +37,10 @@ def get_parser(self, prog_name):
3837
'--out',
3938
metavar='<out>',
4039
required=True,
41-
help=_('Name of the output file where certificate will be saved.\n'
42-
'Note: the file will be overwritten if it already exists')
40+
help=_(
41+
'Name of the output file where certificate will be saved.\n'
42+
'Note: the file will be overwritten if it already exists'
43+
),
4344
)
4445

4546
def take_action(self, parsed_args):

0 commit comments

Comments
 (0)