Skip to content

Commit f298038

Browse files
committed
fix: linting
1 parent 37672b1 commit f298038

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

app/support/builders/example/examplerequestbuilder.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,9 @@ class XMLMessageBuilder:
1616
def __init__(self, context):
1717
self.faker = Faker("en_GB")
1818
self.context = context
19-
self.environment = Environment(loader=FileSystemLoader("templates/"), autoescape=True)
19+
self.environment = Environment(
20+
loader=FileSystemLoader("templates/"), autoescape=True
21+
)
2022

2123
def header(self, auth_token):
2224
"""builds request header for a message"""

app/support/pageactions/basepage.py

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -106,11 +106,12 @@ def type_in_locator(
106106
"""Type in locator"""
107107
if sensitive:
108108
logging.debug(
109-
"Typing in locator %s text *****", locator.get_formatted_locator())
109+
"Typing in locator %s text *****", locator.get_formatted_locator()
110+
)
110111
else:
111112
logging.debug(
112113
"Typing in locator %s text %s", locator.get_formatted_locator(), text
113-
)
114+
)
114115
self.assert_element_displayed_and_click(locator)
115116
self.element_action.type(
116117
locator.get_formatted_locator(), text=text, delay=delay, sensitive=sensitive

0 commit comments

Comments
 (0)