fix: ignore micro-sec for booking timestamp

This commit is contained in:
relikd
2023-06-02 02:17:55 +02:00
parent 347d70699f
commit e0a0c58948
3 changed files with 7 additions and 6 deletions

View File

@@ -11,7 +11,7 @@ if TYPE_CHECKING:
from django.db.models import OuterRef
from app.base.models.person import Person
from app.base.models.booking_type import BookingType
from datetime import timedelta
from datetime import timedelta # noqa F401
class Booking(models.Model):