Skip to content

Commit f293a58

Browse files
committed
Remove six leafovers
1 parent 685e547 commit f293a58

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

readthedocs/core/utils/extend.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ def __getattr__(cls, attr): # noqa: pep8 false positive
3939
return getattr(proxy_class, attr)
4040

4141

42-
class SettingsOverrideObject(six.with_metaclass(SettingsOverrideMeta, object)):
42+
class SettingsOverrideObject(object, metaclass=SettingsOverrideMeta):
4343

4444
"""
4545
Base class for creating class that can be overridden.

readthedocs/rtd_tests/tests/test_views.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,8 @@
33
from django.contrib.auth.models import User
44
from django.test import TestCase
55
from django.urls import reverse
6-
from django.utils.six.moves.urllib.parse import urlsplit
76
from django_dynamic_fixture import get, new
7+
from urllib.parse import urlsplit
88

99
from readthedocs.builds.constants import LATEST
1010
from readthedocs.builds.models import Build

0 commit comments

Comments
 (0)