Skip to content

Commit 23ad833

Browse files
committed
chore(predicates): tidy imports before cudf helper
1 parent 15b1843 commit 23ad833

File tree

1 file changed

+3
-3
lines changed
  • graphistry/compute/predicates

1 file changed

+3
-3
lines changed

graphistry/compute/predicates/str.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,15 @@
22

33
import pandas as pd
44

5+
from .ASTPredicate import ASTPredicate
6+
from graphistry.compute.typing import SeriesT
7+
58

69
def _cudf_mask_none(result: Any, mask: Any) -> Any:
710
result_pd = result.to_pandas().astype('object')
811
result_pd.iloc[mask] = None
912
return result_pd
1013

11-
from .ASTPredicate import ASTPredicate
12-
from graphistry.compute.typing import SeriesT
13-
1414

1515
class Contains(ASTPredicate):
1616
def __init__(

0 commit comments

Comments
 (0)