mirror of
https://github.com/yasirarism/MissKatyPyro.git
synced 2025-12-29 17:44:50 +00:00
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:
parent
e33a58a3f2
commit
f7922fd965
2 changed files with 0 additions and 2 deletions
|
|
@ -15,7 +15,6 @@ from time import time
|
|||
from typing import Any, Optional, Tuple
|
||||
|
||||
import aiohttp
|
||||
import contextlib
|
||||
import cloudscraper
|
||||
import requests
|
||||
import platform
|
||||
|
|
|
|||
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue