Skip to content

Commit d8a00a6

Browse files
Fix linting issues
1 parent f3123e0 commit d8a00a6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/python_testing/TC_REFALM_2_2.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -152,15 +152,15 @@ def _ask_for_closed_door(self):
152152
self._send_close_door_commnad()
153153
sleep(1)
154154
else:
155-
user_response = self.wait_for_user_input(prompt_msg=f"Ensure that the door on the DUT is closed.",
155+
user_response = self.wait_for_user_input(prompt_msg="Ensure that the door on the DUT is closed.",
156156
default_value="y")
157157
asserts.assert_equal(user_response.lower(), "y")
158158

159159
def _ask_for_open_door(self):
160160
if self.is_ci:
161161
self._send_open_door_command()
162162
else:
163-
user_response = self.wait_for_user_input(prompt_msg=f"Manually open the door on the DUT. Enter 'y' or 'n' after completition",
163+
user_response = self.wait_for_user_input(prompt_msg="Manually open the door on the DUT. Enter 'y' or 'n' after completition",
164164
default_value="y")
165165
asserts.assert_equal(user_response.lower(), "y")
166166

0 commit comments

Comments
 (0)