Skip to content

Commit 6757aff

Browse files
committed
remove unused
1 parent 59d23dc commit 6757aff

File tree

1 file changed

+0
-5
lines changed

1 file changed

+0
-5
lines changed

backend/api/schedule/types/slot.py

Lines changed: 0 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,11 @@
11
from enum import Enum
2-
from typing import TYPE_CHECKING, Annotated
32
from django.utils import timezone
43
from datetime import datetime, time, timedelta
54
from api.schedule.types.schedule_item import ScheduleItem
65

76

87
import strawberry
98

10-
if TYPE_CHECKING:
11-
from api.schedule.types.day import Day
12-
139

1410
@strawberry.enum
1511
class ScheduleSlotType(Enum):
@@ -24,7 +20,6 @@ class ScheduleSlot:
2420
hour: time
2521
duration: int
2622
type: ScheduleSlotType
27-
day: Annotated["Day", strawberry.lazy("api.schedule.types.day")]
2823

2924
@strawberry.field
3025
def is_live(self) -> bool:

0 commit comments

Comments
 (0)