From 854970f4dda7a5012866554c1df984bca9968d01 Mon Sep 17 00:00:00 2001 From: Barbara Miller Date: Thu, 23 Jan 2025 11:21:05 -0800 Subject: [PATCH] black'd --- brozzler/cli.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/brozzler/cli.py b/brozzler/cli.py index dc1f611..59025e3 100755 --- a/brozzler/cli.py +++ b/brozzler/cli.py @@ -611,14 +611,16 @@ def brozzler_worker(argv=None): logging.info("running with empty skip_av_seeds") return skip_av_seeds - def get_proxy_endpoints(): + def get_proxy_endpoints(): PROXY_ENDPOINTS_FILE = "/opt/local/brozzler/proxy_endpoints.txt" try: # make list from file with open(PROXY_ENDPOINTS_FILE) as endpoints: proxy_endpoints = [l for l in endpoints.readlines()] if proxy_endpoints: - logging.info("running with proxy endpoints file %s" % PROXY_ENDPOINTS_FILE) + logging.info( + "running with proxy endpoints file %s" % PROXY_ENDPOINTS_FILE + ) except Exception as e: proxy_endpoints = [] logging.info("running with empty proxy endpoints file")