Skip to content

Commit

Permalink
Clean up Django deprecation warnings.
Browse files Browse the repository at this point in the history
  • Loading branch information
rtibbles committed Jul 1, 2024
1 parent 882236c commit 116d7a0
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion morango/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
default_app_config = "morango.apps.MorangoConfig"
__version__ = "0.8.0"
2 changes: 1 addition & 1 deletion morango/constants/transfer_stages.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
This module contains constants representing the possible stages of a transfer session.
"""
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

INITIALIZING = "initializing"
SERIALIZING = "serializing"
Expand Down
2 changes: 1 addition & 1 deletion morango/constants/transfer_statuses.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
"""
This module contains constants representing the possible statuses of a transfer session stage.
"""
from django.utils.translation import ugettext_lazy as _
from django.utils.translation import gettext_lazy as _

PENDING = "pending"
STARTED = "started"
Expand Down

0 comments on commit 116d7a0

Please sign in to comment.