File tree Expand file tree Collapse file tree 2 files changed +5
-3
lines changed
pytest_splunk_addon_ui_smartx/alert_actions/components Expand file tree Collapse file tree 2 files changed +5
-3
lines changed Original file line number Diff line number Diff line change 1818from .action_controls import ActionControls
1919from .alert_base_component import AlertBaseComponent , Selector
2020from .alert_base_control import AlertBaseControl
21- from pytest_splunk_addon_ui_smartx .alert_actions .components .splunk_select import SplunkSelect
21+ from pytest_splunk_addon_ui_smartx .alert_actions .components .splunk_select import (
22+ SplunkSelect ,
23+ )
2224
2325
2426class AlertSingleSelect (ActionControls ):
Original file line number Diff line number Diff line change @@ -7,8 +7,8 @@ def __init__(self, webelement):
77 if not webelement .tag_name .lower () in ("select" , "splunk-select" ):
88 raise UnexpectedTagNameException (
99 "Select only works on <select> and <splunk-select> elements, "
10- "not on <%s>" %
11- webelement . tag_name )
10+ "not on <%s>" % webelement . tag_name
11+ )
1212 self ._el = webelement
1313 multi = self ._el .get_attribute ("multiple" )
1414 self .is_multiple = multi and multi != "false"
You can’t perform that action at this time.
0 commit comments