File tree Expand file tree Collapse file tree 3 files changed +2
-11
lines changed
Expand file tree Collapse file tree 3 files changed +2
-11
lines changed Original file line number Diff line number Diff line change 1818
1919from typing import List
2020
21- # pyre-fixme[21]: Could not find `velox.py.vector`.
2221from velox .py .vector import Vector
2322from pyarrow import Array
2423
25- # pyre-fixme[11]: Annotation `Vector` is not defined as a type.
2624def to_velox (array : Array ) -> Vector : ...
2725def to_arrow (vector : Vector ) -> Array : ...
Original file line number Diff line number Diff line change 1919from enum import Enum
2020from typing import List , Dict , Type
2121
22- # pyre-fixme[21]: Could not find `velox.py.type`.
23- from velox .py .type import Type
24-
25- # pyre-fixme[21]: Could not find `velox.py.type`.
2622from velox .py .file import File
23+ from velox .py .type import Type
2724
2825
2926class JoinType (Enum ):
@@ -37,13 +34,11 @@ class PlanBuilder:
3734 def __init__ (self ) -> None : ...
3835 def table_scan (
3936 self ,
40- # pyre-fixme[11]: Annotation `Type` is not defined as a type.
4137 output_schema : Type ,
4238 aliases : Dict [str , str ] = {},
4339 subfields : Dict [str , List [int ]] = {},
4440 row_index : str = "" ,
4541 connector_id : str = "prism" ,
46- # pyre-fixme[11]: Annotation `File` is not defined as a type.
4742 input_files : List [File ] = [],
4843 ) -> PlanBuilder : ...
4944 def get_plan_node (self ) -> PlanBuilder : ...
Original file line number Diff line number Diff line change 1818
1919from typing import Iterator
2020
21- # pyre-fixme[21]: Could not find `velox.py.type`.
22- from velox .py .cector import Vector
21+ from velox .py .vector import Vector
2322
2423
2524class LocalRunner :
2625 def __init__ (self , PlanNode ) -> None : ...
27- # pyre-fixme[11]: Annotation `Vector` is not defined as a type.
2826 def execute (self ) -> Iterator [Vector ]: ...
2927 def add_file_split (self , plan_id : str , file_path : str ) -> None : ...
3028
You can’t perform that action at this time.
0 commit comments