Skip to content

Commit

Permalink
- fixed tests for python 3.8
Browse files Browse the repository at this point in the history
  • Loading branch information
rptmat57 committed Jun 18, 2024
1 parent f57e759 commit e9840fb
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion NEMO/tests/test_formats.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
import datetime
import zoneinfo

try:
import zoneinfo
except ImportError:
from backports import zoneinfo

from django.conf import settings
from django.test import TestCase
Expand Down

0 comments on commit e9840fb

Please sign in to comment.