Skip to content

Commit e04b17e

Browse files
committed
Linter fixes
1 parent b107349 commit e04b17e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

elm/embed.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ def clean_tables(text):
8080

8181
return '\n'.join(lines)
8282

83-
def run(self, rate_limit=175e3):
83+
def run(self, rate_limit=175e3): # pylint: disable=unused-argument
8484
"""Run text embedding in serial
8585
8686
Parameters
@@ -216,4 +216,4 @@ async def call_embedding_async(self, all_request_jsons,
216216
rate_limit=rate_limit)
217217

218218
out = await self.api_queue.run()
219-
return out
219+
return out

0 commit comments

Comments
 (0)