Skip to content

Commit

Permalink
Remove six leafovers
Browse files Browse the repository at this point in the history
  • Loading branch information
humitos committed Jan 8, 2019
1 parent 685e547 commit f293a58
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion readthedocs/core/utils/extend.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ def __getattr__(cls, attr): # noqa: pep8 false positive
return getattr(proxy_class, attr)


class SettingsOverrideObject(six.with_metaclass(SettingsOverrideMeta, object)):
class SettingsOverrideObject(object, metaclass=SettingsOverrideMeta):

"""
Base class for creating class that can be overridden.
Expand Down
2 changes: 1 addition & 1 deletion readthedocs/rtd_tests/tests/test_views.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,8 @@
from django.contrib.auth.models import User
from django.test import TestCase
from django.urls import reverse
from django.utils.six.moves.urllib.parse import urlsplit
from django_dynamic_fixture import get, new
from urllib.parse import urlsplit

from readthedocs.builds.constants import LATEST
from readthedocs.builds.models import Build
Expand Down

0 comments on commit f293a58

Please sign in to comment.