Skip to content

Commit f9dd621

Browse files
committed
fix formatting
Signed-off-by: Jordan Dubrick <jdubrick@redhat.com>
1 parent dac1a5d commit f9dd621

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

tests/unit/app/endpoints/test_feedback.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,8 @@ def _reset_feedback_config():
3737
yield
3838
configuration.user_data_collection_configuration.feedback_enabled = original_enabled
3939
configuration.user_data_collection_configuration.feedback_storage = original_storage
40+
41+
4042
VALID_BASE = {
4143
"conversation_id": "12345678-abcd-0000-0123-456789abcdef",
4244
"user_question": "What is Kubernetes?",
@@ -407,9 +409,7 @@ def worker(index: int, desired_status: bool) -> None:
407409
except Exception as exc: # pylint: disable=broad-exception-caught
408410
errors[index] = exc
409411

410-
threads = [
411-
threading.Thread(target=worker, args=args) for args in thread_args
412-
]
412+
threads = [threading.Thread(target=worker, args=args) for args in thread_args]
413413
for t in threads:
414414
t.start()
415415
barrier.wait()

0 commit comments

Comments
 (0)