1
0
mirror of https://github.com/django/django.git synced 2025-04-04 13:36:42 +00:00

ticket #34699. reformatting documentation with blacken-docs!

This commit is contained in:
wesley 2024-10-09 18:36:00 -04:00
parent 1b9e03c2e8
commit 5a7b3e8359

View File

@ -681,16 +681,12 @@ Usage example:
... trunc_start=TruncSecond("start_datetime")
... ).filter(trunc_start__lte=start)
>>> find_this_exp.count()
...
0 # We expect to find one result but 0 are found
>>> start_adjusted = timezone.localtime(start).replace(
... tzinfo=zoneinfo.ZoneInfo(key='UTC')
... )
>>> start_adjusted = timezone.localtime(start).replace(tzinfo=zoneinfo.ZoneInfo(key="UTC"))
>>> find_this_exp_adjusted = Experiment.objects.annotate(
... trunc_start=TruncSecond("start_datetime")
... ).filter(trunc_start__lte=start_adjusted)
>>> find_this_exp.count()
...
1
``DateField`` truncation