Skip to content

Commit

Permalink
taming linter
Browse files Browse the repository at this point in the history
  • Loading branch information
deniszh committed Aug 25, 2024
1 parent b5ad58e commit 5a53384
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion webapp/graphite/events/models.py
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
import os

from django.db import models
from django.utils.encoding import smart_str

# Monkeypatching so that django-tagging can import python_2_unicode_compatible
import django.utils.encoding
import six
django.utils.encoding.python_2_unicode_compatible = six.python_2_unicode_compatible
django.utils.six = six
from django.utils.encoding import smart_str
django.utils.encoding.smart_text = smart_str
from tagging.models import Tag # noqa: E402

Expand Down

0 comments on commit 5a53384

Please sign in to comment.