Skip to content

Commit 7758dba

Browse files
alexbarrosfabclmnt
authored andcommitted
fix: liting issue
1 parent 7ae5e16 commit 7758dba

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ydata_profiling/model/pandas/describe_timeseries_pandas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def stationarity_test(config: Settings, series: pd.Series) -> Tuple[bool, float]
2020
adfuller_test = adfuller(
2121
series.dropna(),
2222
autolag=config.vars.timeseries.autolag,
23-
maxlag=config.vars.timeseries.maxlag
23+
maxlag=config.vars.timeseries.maxlag,
2424
)
2525
p_value = adfuller_test[1]
2626

0 commit comments

Comments
 (0)