From 74e680e2fbd4a4a71a2fc04c520817a2c2ff2208 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Roland=20H=C3=A4der?= Date: Sat, 3 Jun 2023 18:31:21 +0200 Subject: [PATCH] Continued: - sorted import members - added missing 'import sys' --- fetch_blocks.py | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/fetch_blocks.py b/fetch_blocks.py index bfc2838..d8c33e0 100755 --- a/fetch_blocks.py +++ b/fetch_blocks.py @@ -17,11 +17,12 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see . -import reqto -import time import bs4 import itertools import re +import reqto +import sys +import time import validators from fba import * -- 2.39.5