type hints

This commit is contained in:
Isidro Arias 2023-04-06 13:59:52 +02:00
parent e6ce09836d
commit e4d39db77e

View File

@ -25,7 +25,7 @@ class Bloom:
"""
)
def exists(self, value: str)-> bool:
def exists(self, value: str) -> bool:
h = self.hash_(value)
res = (h & self.bitstring) == h