Skip to content

Commit 78cfb30

Browse files
committed
fix: issue#915 flake8 errors
1 parent 628493e commit 78cfb30

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/pandas_profiling/model/summary_algorithms.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ def chi_square(
5151
values: Optional[np.ndarray] = None, histogram: Optional[np.ndarray] = None
5252
) -> dict:
5353
if histogram is None:
54-
bins = bins = np.histogram_bin_edges(values, bins="auto")
54+
bins = np.histogram_bin_edges(values, bins="auto")
5555
histogram, _ = np.histogram(values, bins=bins)
5656
return dict(chisquare(histogram)._asdict())
5757

0 commit comments

Comments
 (0)