diff --git a/src/okbloomer/bloom_filter.py b/src/okbloomer/bloom_filter.py index 4c4dee1..23708c9 100644 --- a/src/okbloomer/bloom_filter.py +++ b/src/okbloomer/bloom_filter.py @@ -136,9 +136,7 @@ def exists_or_insert(self, token: str) -> bool: return exists def _add_layer(self) -> None: - """ - Add another layer to the filter for maintaining the false positivity rate below the threshold. - """ + """Add another layer to the filter for maintaining the false positivity rate below the threshold.""" self.layers.append(np.zeros(self.layer_size, dtype='bool')) self.m += self.layer_size