Update dbscan.py removed typing

This commit is contained in:
tkgowtham 2024-10-02 20:07:45 +05:30 committed by GitHub
parent d49fea0cc6
commit 3fa1d18426
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -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:
----------- -----------