Remove unused imports

This commit is contained in:
Ivan Habunek 2023-11-19 12:48:22 +01:00
parent 5a83cd7d3b
commit cd03486a25
No known key found for this signature in database
GPG Key ID: F5F0623FF5EBCB3D
1 changed files with 2 additions and 4 deletions

View File

@ -2,11 +2,9 @@ import base64
import re
import urwid
from functools import lru_cache, reduce
from functools import reduce
from html.parser import HTMLParser
from typing import List, Optional
from toot import settings
from typing import List
HASHTAG_PATTERN = re.compile(r'(?<!\w)(#\w+)\b')