add ruff format, ruff check, time_picker, project structure and imports reorganized
This commit is contained in:
@@ -1,8 +1,7 @@
|
||||
from sqlmodel import SQLModel, Field
|
||||
|
||||
|
||||
class FSMStorage(SQLModel, table = True):
|
||||
|
||||
class FSMStorage(SQLModel, table=True):
|
||||
__tablename__ = "fsm_storage"
|
||||
key: str = Field(primary_key = True)
|
||||
value: str | None = None
|
||||
key: str = Field(primary_key=True)
|
||||
value: str | None = None
|
||||
|
||||
Reference in New Issue
Block a user