remove pydantic from user_interface.py

This commit is contained in:
2025-03-09 09:14:48 -05:00
parent 9fdf79842d
commit 75a5e470d3

View File

@@ -1,11 +1,10 @@
from pydantic import BaseModel
from dataclasses import dataclass
from secrets import choice
from src.models import KeypadSize
from src.utils import list_to_matrix, secure_fisher_yates_shuffle, matrix_to_list, matrix_transpose
class UserInterface(BaseModel):
@dataclass
class UserInterface:
interface: list[int]
keypad_size: KeypadSize