1
0
mirror of https://github.com/ihabunek/toot.git synced 2024-06-23 06:25:26 +00:00

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

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')