Skip to content

Commit

Permalink
Update timezone import
Browse files Browse the repository at this point in the history
This should since django 5 be done from python datetime library instead
of the django library
  • Loading branch information
Bob Booij-Liewes committed Dec 18, 2024
1 parent 301513f commit c6eb630
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion binder/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@
from django.db.models import signals
from django.core.exceptions import ValidationError
from django.db.models.query_utils import Q
from django.utils import timezone
from datetime import timezone
from django.utils.translation import gettext_lazy as _
from django.utils.dateparse import parse_date, parse_datetime

Expand Down

0 comments on commit c6eb630

Please sign in to comment.