Skip to content

Commit 2771778

Browse files
committed
flake8 complience
1 parent c068605 commit 2771778

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/local_pca_mnist.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010
def get_subset_mnist(n: int = 1000):
1111
dataset = MNIST(root="", download=True)
12-
data = dataset.data[dataset.targets==1]
12+
data = dataset.data[dataset.targets == 1]
1313
N = data.shape[0]
1414
idx = np.random.choice(np.arange(N), size=n)
1515
return data[idx]

0 commit comments

Comments
 (0)