Skip to content

Commit

Permalink
Wrong dataclass
Browse files Browse the repository at this point in the history
  • Loading branch information
thomaserlang committed May 19, 2024
1 parent 3bc1e1d commit 25862ae
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion seplis_play_server/transcoders/video.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@
import shutil
import sys
import uuid
from dataclasses import dataclass as pydataclass
from decimal import Decimal
from typing import Annotated, Dict, Literal, Optional

Expand Down Expand Up @@ -84,7 +85,7 @@ class Video_color(BaseModel):
range_type: str


@dataclass
@pydataclass
class Session_model:
process: asyncio.subprocess.Process
call_later: asyncio.TimerHandle
Expand Down

0 comments on commit 25862ae

Please sign in to comment.