Skip to content

Commit b2cde77

Browse files
committed
chore: reformated
1 parent 2fdf7a7 commit b2cde77

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

pytest_splunk_addon_ui_smartx/alert_actions/components/single_select.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,9 @@
1818
from .action_controls import ActionControls
1919
from .alert_base_component import AlertBaseComponent, Selector
2020
from .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

2426
class AlertSingleSelect(ActionControls):

pytest_splunk_addon_ui_smartx/alert_actions/components/splunk_select.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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"

0 commit comments

Comments
 (0)