Skip to content

Commit 1268f3d

Browse files
style: ruff format (auto)
1 parent a5ff895 commit 1268f3d

1 file changed

Lines changed: 1 addition & 4 deletions

File tree

tests/unit/test_processor_mapping_client.py

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,7 @@ class EmbeddingClient:
4141
class Embeddings:
4242
async def create(self, model, input):
4343
return SimpleNamespace(
44-
data=[
45-
SimpleNamespace(embedding=[0.1, 0.2, 0.3])
46-
for _ in input
47-
]
44+
data=[SimpleNamespace(embedding=[0.1, 0.2, 0.3]) for _ in input]
4845
)
4946

5047
embeddings = Embeddings()

0 commit comments

Comments
 (0)