Skip to content

Commit e4d39db

Browse files
committed
type hints
1 parent e6ce098 commit e4d39db

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data_structures/hashing/bloom_filter.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def add(self, value: str):
2525
"""
2626
)
2727

28-
def exists(self, value: str)-> bool:
28+
def exists(self, value: str) -> bool:
2929
h = self.hash_(value)
3030
res = (h & self.bitstring) == h
3131

0 commit comments

Comments
 (0)