Skip to content

Commit

Permalink
update types in comments
Browse files Browse the repository at this point in the history
  • Loading branch information
atl1502 committed Mar 27, 2024
1 parent f149792 commit 295b9e8
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dataprofiler/profilers/order_column_profile.py
Original file line number Diff line number Diff line change
Expand Up @@ -380,7 +380,7 @@ def _get_data_order(
Additionally, return the first and last value of the series.
:param df_series: a given column
:type df_series: polars.series.series.Series
:type df_series: polars.Series
:param data_store_type: type of value for first_value and last_value
:type data_store_type: Type[str] | Type[pl.Float64]
:return: order, first_value, last_value, data_store_type
Expand Down Expand Up @@ -467,7 +467,7 @@ def _update_helper(self, df_series_clean: Series, profile: dict) -> None:
Update col profile properties with clean dataset and its known null parameters.
:param df_series_clean: df series with nulls removed
:type df_series_clean: polars.series.series.Series
:type df_series_clean: polars.Series
:param profile: ordered profile
:type profile: dict
:return: None
Expand All @@ -479,7 +479,7 @@ def update(self, df_series: Series) -> OrderColumn:
Update the column profile.
:param df_series: df series
:type df_series: polars.series.series.Series
:type df_series: polars.Series
:return: updated OrderColumn
:rtype: OrderColumn
"""
Expand Down

0 comments on commit 295b9e8

Please sign in to comment.