use autoflake to remove unused imports

This commit is contained in:
ducklet 2020-11-08 01:17:33 +01:00
parent b7a683c11d
commit 9d7d80d3a5
9 changed files with 19 additions and 20 deletions

View file

@ -1,5 +1,4 @@
import random
import re
from ..functions import reply
from ..models import Message

View file

@ -1,4 +1,3 @@
import re
from dataclasses import dataclass
from html import escape
from random import choice

View file

@ -2,8 +2,6 @@ import codecs
import re
from dataclasses import dataclass
from html import escape
from html.parser import HTMLParser
from random import randint
from time import time as now
from typing import *

View file

@ -1,11 +1,9 @@
import io
import json
import re
from dataclasses import dataclass, fields
from dataclasses import dataclass
from dataclasses import replace as clone
from datetime import date
from html import escape
from html.parser import HTMLParser
from pathlib import Path
from typing import *
from urllib.parse import urlparse

View file

@ -1,9 +1,8 @@
import asyncio
import logging
import re
from dataclasses import dataclass
from datetime import datetime
from functools import lru_cache, partial
from functools import lru_cache
from html import escape
from time import time as now
from typing import *

View file

@ -1,7 +1,6 @@
import re
from dataclasses import dataclass, fields
from dataclasses import dataclass
from functools import lru_cache
from html import escape
from time import time as now
from typing import *