File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -321,7 +321,7 @@ def to_sql(
321321 raise NotImplementedError ("to_sql not implemented for this executor" )
322322
323323 @abc .abstractmethod
324- async def execute (
324+ def execute (
325325 self ,
326326 array_value : bigframes .core .ArrayValue ,
327327 execution_spec : ex_spec .ExecutionSpec ,
Original file line number Diff line number Diff line change 3333class TestExecutor (bigframes .session .executor .Executor ):
3434 compiler = bigframes .core .compile .polars .PolarsCompiler ()
3535
36- async def execute (
36+ def execute (
3737 self ,
3838 array_value : bigframes .core .ArrayValue ,
3939 execution_spec : bigframes .session .execution_spec .ExecutionSpec ,
Original file line number Diff line number Diff line change @@ -1048,7 +1048,7 @@ def mypy(session):
10481048 # Editable mode is not compatible with mypy when there are multiple
10491049 # package directories. See:
10501050 # https://github.com/python/mypy/issues/10564#issuecomment-851687749
1051- session .install ("." )
1051+ session .install ("--no-cache-dir" , " ." )
10521052
10531053 # Just install the dependencies' type info directly, since "mypy --install-types"
10541054 # might require an additional pass.
You can’t perform that action at this time.
0 commit comments