Skip to content

Commit 55e57f1

Browse files
authored
chore: improve improper naming in function session (#1635)
1 parent f4e5b26 commit 55e57f1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

bigframes/functions/_function_session.py

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -886,7 +886,7 @@ def wrapper(func):
886886
signature, input_types, output_type # type: ignore
887887
)
888888

889-
remote_function_client = _function_client.FunctionClient(
889+
managed_function_client = _function_client.FunctionClient(
890890
dataset_ref.project,
891891
bq_location,
892892
dataset_ref.dataset_id,
@@ -905,7 +905,7 @@ def wrapper(func):
905905
self._try_delattr(func, "is_row_processor")
906906
self._try_delattr(func, "ibis_node")
907907

908-
bq_function_name = remote_function_client.provision_bq_managed_function(
908+
bq_function_name = managed_function_client.provision_bq_managed_function(
909909
func=func,
910910
input_types=tuple(
911911
third_party_ibis_bqtypes.BigQueryType.from_ibis(type_)
@@ -942,7 +942,7 @@ def wrapper(func):
942942
signature=(ibis_signature.input_types, ibis_signature.output_type),
943943
) # type: ignore
944944
func.bigframes_bigquery_function = (
945-
remote_function_client.get_remote_function_fully_qualilfied_name(
945+
managed_function_client.get_remote_function_fully_qualilfied_name(
946946
bq_function_name
947947
)
948948
)

0 commit comments

Comments
 (0)