remove unused classvars
This commit is contained in:
parent
91d06f607c
commit
86c3030e31
1 changed files with 0 additions and 10 deletions
|
|
@ -240,8 +240,6 @@ class Progress:
|
|||
Column("stopped", String),
|
||||
)
|
||||
|
||||
_table: ClassVar[str] = "progress"
|
||||
|
||||
id: ULID = field(default_factory=ULID)
|
||||
type: str = None
|
||||
state: str = None
|
||||
|
|
@ -297,8 +295,6 @@ class Movie:
|
|||
Column("updated", String, nullable=False), # datetime
|
||||
)
|
||||
|
||||
_table: ClassVar[str] = "movies"
|
||||
|
||||
id: ULID = field(default_factory=ULID)
|
||||
title: str = None # canonical title (usually English)
|
||||
original_title: str | None = (
|
||||
|
|
@ -370,8 +366,6 @@ class Rating:
|
|||
Column("finished", Integer), # bool
|
||||
)
|
||||
|
||||
_table: ClassVar[str] = "ratings"
|
||||
|
||||
id: ULID = field(default_factory=ULID)
|
||||
|
||||
movie_id: ULID = None
|
||||
|
|
@ -425,8 +419,6 @@ class User:
|
|||
Column("groups", String, nullable=False), # JSON array
|
||||
)
|
||||
|
||||
_table: ClassVar[str] = "users"
|
||||
|
||||
id: ULID = field(default_factory=ULID)
|
||||
imdb_id: str = None
|
||||
name: str = None # canonical user name
|
||||
|
|
@ -463,8 +455,6 @@ class Group:
|
|||
Column("users", String, nullable=False), # JSON array
|
||||
)
|
||||
|
||||
_table: ClassVar[str] = "groups"
|
||||
|
||||
id: ULID = field(default_factory=ULID)
|
||||
name: str = None
|
||||
users: list[GroupUser] = field(default_factory=list)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue