Skip to content

Commit cd3f84f

Browse files
aloctavodiatwiecki
authored andcommitted
remove redundant parentheses
1 parent ec7dfae commit cd3f84f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pymc3/plots/kdeplot.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def fast_kde(x):
6666

6767
xmin, xmax = np.min(x), np.max(x)
6868

69-
dx = ((xmax - xmin) / (nx - 1))
69+
dx = (xmax - xmin) / (nx - 1)
7070
std_x = np.std((x - xmin) / dx)
7171
grid, _ = np.histogram(x, bins=nx)
7272

0 commit comments

Comments
 (0)