Skip to content

Commit cf337d3

Browse files
[pre-commit.ci] auto fixes from pre-commit.com hooks
for more information, see https://pre-commit.ci
1 parent c4170fe commit cf337d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

machine_learning/gaussian_naive_bayes.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -244,4 +244,4 @@ def predict_proba(self, X: np.ndarray) -> np.ndarray: # noqa: N803
244244
probas = clf.predict_proba(X_test[:5])
245245
print("\nProbability predictions for first 5 samples:")
246246
for i, proba in enumerate(probas):
247-
print(f"Sample {i+1}: {proba}")
247+
print(f"Sample {i + 1}: {proba}")

0 commit comments

Comments
 (0)