mirror of
https://github.com/TheAlgorithms/Python.git
synced 2025-03-13 18:19:47 +00:00
Update dbscan.py removed typing
This commit is contained in:
parent
d49fea0cc6
commit
3fa1d18426
@ -6,7 +6,6 @@ LinkedIn : https://www.linkedin.com/in/gowtham-kamalasekar/
|
|||||||
"""
|
"""
|
||||||
|
|
||||||
import math
|
import math
|
||||||
from typing import Dict, List
|
|
||||||
|
|
||||||
import matplotlib.pyplot as plt
|
import matplotlib.pyplot as plt
|
||||||
import pandas as pd
|
import pandas as pd
|
||||||
@ -92,7 +91,7 @@ class DbScan:
|
|||||||
)
|
)
|
||||||
self.dict1 = self.perform_dbscan()
|
self.dict1 = self.perform_dbscan()
|
||||||
|
|
||||||
def perform_dbscan(self) -> Dict[int, List[int]]:
|
def perform_dbscan(self) -> dict[int, list[int]]:
|
||||||
"""
|
"""
|
||||||
Args:
|
Args:
|
||||||
-----------
|
-----------
|
||||||
|
Loading…
x
Reference in New Issue
Block a user