Skip to content

Commit 7609025

Browse files
committed
Linting
1 parent a59b996 commit 7609025

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

test_unstructured_inference/models/test_model.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,9 +79,9 @@ def get_model_worker(thread_id):
7979

8080
# Verify all results are MockModel instances
8181
for thread_id, model in results:
82-
assert isinstance(model, MockModel), (
83-
f"Thread {thread_id} got unexpected model type: {type(model)}"
84-
)
82+
assert isinstance(
83+
model, MockModel
84+
), f"Thread {thread_id} got unexpected model type: {type(model)}"
8585

8686

8787
def test_register_new_model():

0 commit comments

Comments
 (0)