diff options
author | Ben Sturmfels <ben@sturm.com.au> | 2021-03-05 23:42:38 +1100 |
---|---|---|
committer | Ben Sturmfels <ben@sturm.com.au> | 2021-03-05 23:42:38 +1100 |
commit | 9bf3bc1944b14252978a6aa2f963effab7208515 (patch) | |
tree | bb6d0fd8e617d486982cf0f75f2d633b08415f50 /mediagoblin/plugins/openid | |
parent | dec47c7102cf0aa3a4debf002928db8e460c0d71 (diff) | |
download | mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.tar.lz mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.tar.xz mediagoblin-9bf3bc1944b14252978a6aa2f963effab7208515.zip |
Remove remaining imports/calls to six not automatically removed by pyupgrade.
Diffstat (limited to 'mediagoblin/plugins/openid')
-rw-r--r-- | mediagoblin/plugins/openid/store.py | 2 | ||||
-rw-r--r-- | mediagoblin/plugins/openid/views.py | 2 |
2 files changed, 0 insertions, 4 deletions
diff --git a/mediagoblin/plugins/openid/store.py b/mediagoblin/plugins/openid/store.py index dd794786..62a43e93 100644 --- a/mediagoblin/plugins/openid/store.py +++ b/mediagoblin/plugins/openid/store.py @@ -16,8 +16,6 @@ import base64 import time -import six - from openid.association import Association as OIDAssociation from openid.store.interface import OpenIDStore from openid.store import nonce diff --git a/mediagoblin/plugins/openid/views.py b/mediagoblin/plugins/openid/views.py index 03dee7d4..e1156ee9 100644 --- a/mediagoblin/plugins/openid/views.py +++ b/mediagoblin/plugins/openid/views.py @@ -14,8 +14,6 @@ # You should have received a copy of the GNU Affero General Public License # along with this program. If not, see <http://www.gnu.org/licenses/>. -import six - from openid.consumer import consumer from openid.consumer.discover import DiscoveryFailure from openid.extensions.sreg import SRegRequest, SRegResponse |