refactor: remove reimported module

A module or an import name is reimported multiple times. This can be confusing and should be fixed.
Please refer to the occurrence message to see the reimported name and the line number where it was imported for the first time.
This commit is contained in:
deepsource-autofix[bot] 2024-07-30 04:40:37 +00:00 committed by GitHub
parent e33a58a3f2
commit f7922fd965
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 0 additions and 2 deletions

View file

@ -15,7 +15,6 @@ from time import time
from typing import Any, Optional, Tuple
import aiohttp
import contextlib
import cloudscraper
import requests
import platform

View file

@ -66,7 +66,6 @@ __HELP__ = """
def remove_html_tags(text):
"""Remove html tags from a string"""
import re
clean = re.compile("<.*?>")
return re.sub(clean, "", text)