Skip to content

Commit

Permalink
Merge pull request #77 from dustinchilson/dustinchilson-patch-1
Browse files Browse the repository at this point in the history
  • Loading branch information
JonasKs committed Feb 12, 2022
2 parents 388707d + 151e275 commit 64f094c
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion django_guid/__init__.py
@@ -1,6 +1,10 @@
import django

from django_guid.api import clear_guid, get_guid, set_guid # noqa F401

__version__ = '3.2.1'
default_app_config = 'django_guid.apps.DjangoGuidConfig'

if django.VERSION < (3, 2):
default_app_config = 'django_guid.apps.DjangoGuidConfig'

__all__ = ['clear_guid', 'get_guid', 'set_guid']

0 comments on commit 64f094c

Please sign in to comment.