From 50b6bdfb0e1a78e724ea1738ad3ec3f4719e7a16 Mon Sep 17 00:00:00 2001 From: L1ghtn1ng Date: Fri, 18 Oct 2024 17:55:51 +0100 Subject: [PATCH] lint fix --- tools/tld_downloader.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tld_downloader.py b/tools/tld_downloader.py index d1ce18ab..70088e77 100755 --- a/tools/tld_downloader.py +++ b/tools/tld_downloader.py @@ -7,7 +7,7 @@ def read_tld_data(file_path): - with open(file_path, 'r') as f: + with open(file_path) as f: return json.load(f)