Skip to content

Commit fb45d29

Browse files
Automatic pre-commit fixes
1 parent ed052ee commit fb45d29

File tree

1 file changed

+4
-2
lines changed

1 file changed

+4
-2
lines changed

examples/clustering/sklearn_clustering_with_aeon_distances.ipynb

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -99,10 +99,12 @@
9999
"# Visualize the clustering results\n",
100100
"plt.figure(figsize=(10, 6))\n",
101101
"for label in np.unique(labels):\n",
102-
" plt.plot(np.mean(X[labels == label], axis=0), label=f\"Cluster {label}\") # Fix indexing\n",
102+
" plt.plot(\n",
103+
" np.mean(X[labels == label], axis=0), label=f\"Cluster {label}\"\n",
104+
" ) # Fix indexing\n",
103105
"plt.title(\"Hierarchical Clustering with DTW Distance\")\n",
104106
"plt.legend()\n",
105-
"plt.show()\n"
107+
"plt.show()"
106108
]
107109
},
108110
{

0 commit comments

Comments
 (0)