Remove unnecessary blank lines in model files for cleaner code structure

This commit is contained in:
JSC
2025-07-22 16:18:41 +02:00
parent fefb7f7bf4
commit 2860008a6d
6 changed files with 0 additions and 6 deletions

View File

@@ -28,7 +28,6 @@ class Sound(BaseModel, table=True):
is_music: bool = Field(default=False, nullable=False)
is_deletable: bool = Field(default=True, nullable=False)
# relationships
playlist_sounds: list["PlaylistSound"] = Relationship(back_populates="sound")
streams: list["Stream"] = Relationship(back_populates="sound")