Skip to content

Commit 71db755

Browse files
committed
chore: updates mypy type hinting in geo_ops.py
1 parent 45edec2 commit 71db755

File tree

1 file changed

+2
-2
lines changed
  • packages/bigframes/bigframes/core/compile/ibis_compiler/operations

1 file changed

+2
-2
lines changed

packages/bigframes/bigframes/core/compile/ibis_compiler/operations/geo_ops.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -182,8 +182,8 @@ def st_buffer(
182182

183183
@ibis_udf.scalar.builtin
184184
def st_distance(
185-
a: ibis_dtypes.geography,
186-
b: ibis_dtypes.geography,
185+
a: ibis_dtypes.geography, # type: ignore
186+
b: ibis_dtypes.geography, # type: ignore
187187
use_spheroid: bool, # type: ignore
188188
) -> ibis_dtypes.float: # type: ignore
189189
"""Convert string to geography."""

0 commit comments

Comments
 (0)