Skip to content

Commit 7fa1b4e

Browse files
ignore type
1 parent f74d801 commit 7fa1b4e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/viam/app/data_client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ async def tabular_data_by_mql(
297297
298298
For more information, see `Data Client API <https://docs.viam.com/appendix/apis/data-client/>`_.
299299
"""
300-
mql_binary: List[bytes] = [bson.encode(query) for query in mql_queries] if isinstance(mql_queries[0], dict) else mql_queries # pyright: ignore [typecheck]
300+
mql_binary: List[bytes] = [bson.encode(query) for query in mql_queries] if isinstance(mql_queries[0], dict) else mql_queries # type: ignore
301301
request = TabularDataByMQLRequest(organization_id=organization_id, mql_binary=mql_binary)
302302
response: TabularDataByMQLResponse = await self._data_client.TabularDataByMQL(request, metadata=self._metadata)
303303
return [bson.decode(bson_bytes) for bson_bytes in response.raw_data]

0 commit comments

Comments
 (0)