Skip to content
This repository has been archived by the owner on Jul 24, 2023. It is now read-only.

Commit

Permalink
Fix isort
Browse files Browse the repository at this point in the history
  • Loading branch information
ziima committed Jul 9, 2020
1 parent 7d26c7f commit b33d8f6
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
1 change: 1 addition & 0 deletions admin/gettlds.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
from __future__ import unicode_literals

import sys

import urllib2

langs = {
Expand Down
5 changes: 3 additions & 2 deletions openid/test/test_storetest.py
Original file line number Diff line number Diff line change
Expand Up @@ -225,9 +225,10 @@ class TestFileOpenIDStore(unittest.TestCase):
"""Test `FileOpenIDStore` class."""

def test_filestore(self):
from openid.store import filestore
import tempfile
import shutil
import tempfile

from openid.store import filestore
try:
temp_dir = tempfile.mkdtemp()
except AttributeError:
Expand Down
2 changes: 1 addition & 1 deletion tox.ini
Original file line number Diff line number Diff line change
Expand Up @@ -33,5 +33,5 @@ extras =
quality
commands =
# setup.py is excluded from isort because distutils have problems with unicode_literals.
isort --check-only --diff --recursive openid admin contrib
isort --check-only --diff openid admin contrib
flake8 --format=pylint openid setup.py admin contrib

0 comments on commit b33d8f6

Please sign in to comment.