From d8b4bbe2a1fea2ee086cd58b1ee50151069ed112 Mon Sep 17 00:00:00 2001
From: "deepsource-autofix[bot]"
 <62050782+deepsource-autofix[bot]@users.noreply.github.com>
Date: Tue, 8 Aug 2023 20:41:03 +0000
Subject: [PATCH] refactor: remove commented out code

It is recommended to remove any commented code in your codebase.
---
 src/utils/delete.py | 2 --
 src/utils/utils.py  | 1 -
 2 files changed, 3 deletions(-)

diff --git a/src/utils/delete.py b/src/utils/delete.py
index e446b90..4083a9a 100644
--- a/src/utils/delete.py
+++ b/src/utils/delete.py
@@ -1,4 +1,3 @@
-# This is a scriprt to undo the changes made by adblock-zerotrust.py
 
 import asyncio
 
@@ -17,7 +16,6 @@ async def delete_adblock_list(lists: dict, account_id: str, token: str):
                     "Authorization": f"Bearer {token}",
                     "Content-Type": "application/json",
                 }
-                # response = requests.delete(url, headers=headers, timeout=10)
                 response = await client.delete(url, headers=headers, timeout=10)
                 if response.status_code != 200:
                     print(f"Error deleting list: {response.text}")
diff --git a/src/utils/utils.py b/src/utils/utils.py
index 99e5d66..73a148d 100644
--- a/src/utils/utils.py
+++ b/src/utils/utils.py
@@ -78,7 +78,6 @@ def convert_to_list(file: pathlib.Path) -> list:
             for match in matches
             if match and match.group(1) not in loopback
         ]
-        # print(f"First 5 hosts: {hosts[:5]}")
         return hosts