Skip to content

Commit d2dbdc1

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

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

machine_learning/dbscan.py

+4-3
Original file line numberDiff line numberDiff line change
@@ -28,13 +28,13 @@ class DbScan:
2828
obj.print_dbscan()
2929
obj.plot_dbscan()
3030
"""
31-
31+
3232
import math
3333

3434
import matplotlib.pyplot as plt
3535
import pandas as pd
3636
from typing import dict, list
37-
37+
3838
def __init__(
3939
self,
4040
minpts: int,
@@ -217,7 +217,8 @@ def plot_dbscan(self) -> None:
217217
plt.legend(["Core", "Noise"])
218218
plt.show()
219219
print("Plotted Successfully")
220-
220+
221+
221222
if __name__ == "__main__":
222223
import doctest
223224

0 commit comments

Comments
 (0)