Skip to content

Commit

Permalink
add comment for telemetry attrs
Browse files Browse the repository at this point in the history
  • Loading branch information
sfc-gh-joshi committed Sep 4, 2024
1 parent 9f1a5ce commit 13188da
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/snowflake/snowpark/modin/pandas/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -166,7 +166,9 @@
TimedeltaIndex,
)

# this must occur before overrides are applied
# Record which attributes are defined on an upstream object, and which are defined on a vendored
# object (currently just dataframe.py), and determine when adding telemetry is necessary.
# This must be checked before overrides are applied.
_attrs_defined_on_modin_series = set()
for attr_name, attr_value in Series.__dict__.items():
base_value = BasePandasDataset.__dict__.get(attr_name, None)
Expand Down

0 comments on commit 13188da

Please sign in to comment.