Skip to content

Commit e2c2ab9

Browse files
minor style fix py bug hunt
1 parent e4290bf commit e2c2ab9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

source/clustering.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -949,7 +949,7 @@ For example,
949949
we could square all the numbers from 1-4 and store them in a list:
950950

951951
```{code-cell} ipython3
952-
[number ** 2 for number in range(1, 5)]
952+
[number**2 for number in range(1, 5)]
953953
```
954954

955955
Next, we will use this approach to compute the WSSD for the K-values 1 through 9.

0 commit comments

Comments
 (0)