Remove unused import

This commit is contained in:
Isaiah Odhner 2023-04-24 21:02:24 -04:00
parent e62064a307
commit c3d4e1c254

View File

@ -6,7 +6,7 @@ from textual.reactive import var
from textual.widgets import Button, Static
from textual.message import Message
from rich.text import Text
from localization.i18n import markup_hotkey, remove_hotkey, get_hotkey, get_direction
from localization.i18n import markup_hotkey, get_hotkey, get_direction
def to_snake_case(name: str) -> str:
name = re.sub('(.)([A-Z][a-z]+)', r'\1_\2', name)