Skip to content

Commit 1d117c0

Browse files
committed
rm non functional loop
1 parent 2d2c278 commit 1d117c0

1 file changed

Lines changed: 1 addition & 2 deletions

File tree

lib/blocklist.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,7 @@ class OnlineBlocklist:
3434
def __init__(self, urls: list[str]) -> None:
3535
"""Initialize the OnlineBlockList class."""
3636
self.blocklist: dict[str, BlocklistData] = {url : BlocklistData([], None) for url in urls}
37-
for _ in range(5):
38-
self.refresh()
37+
self.refresh()
3938

4039
def refresh(self) -> None:
4140
"""Pull updated blocklists from the list of blocklist urls."""

0 commit comments

Comments
 (0)