Merge pull request #739 from tcely/patch-3

Move import for `tz`
This commit is contained in:
meeb 2025-02-18 15:01:53 +11:00 committed by GitHub
commit 54487d81b1
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ import json
import re
from xml.etree import ElementTree
from collections import OrderedDict
from datetime import datetime, timedelta
from datetime import datetime, timedelta, timezone as tz
from pathlib import Path
from django.conf import settings
from django.db import models

View File

@ -10,7 +10,7 @@ import math
import uuid
from io import BytesIO
from hashlib import sha1
from datetime import datetime, timedelta, timezone as tz
from datetime import datetime, timedelta
from shutil import copyfile
from PIL import Image
from django.conf import settings