Update python/fetch_combined_trackers_list.py

This commit is contained in:
Jeffrey Serio 2025-03-31 23:43:05 +02:00
parent 6dfa5efecc
commit 6d15f145a5

View File

@ -40,7 +40,6 @@ if __name__ == "__main__":
tracker_urls = [x for x in response.text.splitlines() if x != ""]
combined_trackers_urls.extend(tracker_urls)
current_working_directory = Path.cwd()
tracker_urls_filename = Path.cwd().joinpath("tracker_urls.txt")
with open(tracker_urls_filename, "w") as tf:
for url in combined_trackers_urls: