We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2d2c278 commit 1d117c0Copy full SHA for 1d117c0
1 file changed
lib/blocklist.py
@@ -34,8 +34,7 @@ class OnlineBlocklist:
34
def __init__(self, urls: list[str]) -> None:
35
"""Initialize the OnlineBlockList class."""
36
self.blocklist: dict[str, BlocklistData] = {url : BlocklistData([], None) for url in urls}
37
- for _ in range(5):
38
- self.refresh()
+ self.refresh()
39
40
def refresh(self) -> None:
41
"""Pull updated blocklists from the list of blocklist urls."""
0 commit comments