Skip to content

Commit

Permalink
remove unused
Browse files Browse the repository at this point in the history
  • Loading branch information
marcoacierno committed Feb 16, 2025
1 parent 59d23dc commit 6757aff
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions backend/api/schedule/types/slot.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
from enum import Enum
from typing import TYPE_CHECKING, Annotated
from django.utils import timezone
from datetime import datetime, time, timedelta
from api.schedule.types.schedule_item import ScheduleItem


import strawberry

if TYPE_CHECKING:
from api.schedule.types.day import Day


@strawberry.enum
class ScheduleSlotType(Enum):
Expand All @@ -24,7 +20,6 @@ class ScheduleSlot:
hour: time
duration: int
type: ScheduleSlotType
day: Annotated["Day", strawberry.lazy("api.schedule.types.day")]

@strawberry.field
def is_live(self) -> bool:
Expand Down

0 comments on commit 6757aff

Please sign in to comment.