Skip to content

Commit

Permalink
Fix styling
Browse files Browse the repository at this point in the history
  • Loading branch information
nils-braun committed Mar 11, 2024
1 parent 4e4e42d commit 49bf483
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tsfresh/feature_extraction/feature_calculators.py
Original file line number Diff line number Diff line change
Expand Up @@ -757,7 +757,8 @@ def skewness(x):
"""
if not isinstance(x, pd.Series):
x = pd.Series(x)
return pd.Series.skew(x, skipna = False)
return pd.Series.skew(x, skipna=False)


@set_property("fctype", "simple")
@set_property("input", "pd.Series")
Expand Down

0 comments on commit 49bf483

Please sign in to comment.