From 1429e722f265a4f4229b5f7eaa6a6df3161c342a Mon Sep 17 00:00:00 2001 From: Sarah Boyce <42296566+sarahboyce@users.noreply.github.com> Date: Wed, 9 Apr 2025 10:55:05 +0200 Subject: [PATCH] Sorted imports in django/templatetags/tz.py per isort. --- django/templatetags/tz.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/django/templatetags/tz.py b/django/templatetags/tz.py index 222c6c52df..e8787ac10c 100644 --- a/django/templatetags/tz.py +++ b/django/templatetags/tz.py @@ -1,5 +1,5 @@ import zoneinfo -from datetime import datetime, tzinfo, UTC +from datetime import UTC, datetime, tzinfo from django.template import Library, Node, TemplateSyntaxError from django.utils import timezone