File tree Expand file tree Collapse file tree 1 file changed +1
-1
lines changed
Expand file tree Collapse file tree 1 file changed +1
-1
lines changed Original file line number Diff line number Diff 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 ]
You can’t perform that action at this time.
0 commit comments