1
0
mirror of https://github.com/django/django.git synced 2025-04-03 13:06:49 +00:00

ticket #34699. reformatting documentation, still trying to understand the blacken message.

This commit is contained in:
wesley 2024-10-09 18:30:18 -04:00
parent 201fb15795
commit 1b9e03c2e8

View File

@ -678,15 +678,17 @@ Usage example:
>>> start = timezone.make_aware(start)
>>> exp = Experiment.objects.create(start_datetime=start)
>>> find_this_exp = Experiment.objects.annotate(
... trunc_start=TruncSecond("start_datetime")
... ).filter(trunc_start__lte=start)
>>> find_this_exp.count() # We expect to find one result but 0 are found
... trunc_start=TruncSecond("start_datetime")
... ).filter(trunc_start__lte=start)
>>> find_this_exp.count()
...
0
>>> start_adjusted = timezone.localtime(start).replace(tzinfo=zoneinfo.ZoneInfo(key='UTC'))
0 # We expect to find one result but 0 are found
>>> 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)
... trunc_start=TruncSecond("start_datetime")
... ).filter(trunc_start__lte=start_adjusted)
>>> find_this_exp.count()
...
1