Skip to content

Commit

Permalink
Merge pull request #12 from onipiing/master
Browse files Browse the repository at this point in the history
Fixed an issue on Django3
  • Loading branch information
jneight authored Dec 20, 2021
2 parents d9e6207 + 2a6ca12 commit 1c52e01
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion django_earthdistance/models.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
# coding=utf-8

from django.db import models
from django.utils import six
try:
from django.utils import six
except:
import six


class LlToEarth(models.Expression):
Expand Down

0 comments on commit 1c52e01

Please sign in to comment.