From 2b1e133ed17073e41639987053c8ca0e030fedb6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Vlastimil=20Z=C3=ADma?= Date: Mon, 17 Jun 2019 10:50:09 +0200 Subject: Fix isort --- openid/__init__.py | 1 + openid/consumer/__init__.py | 1 + openid/extensions/__init__.py | 1 + openid/server/__init__.py | 1 + openid/store/__init__.py | 1 + openid/test/__init__.py | 2 ++ openid/yadis/__init__.py | 2 +- 7 files changed, 8 insertions(+), 1 deletion(-) (limited to 'openid') diff --git a/openid/__init__.py b/openid/__init__.py index 60a0592..86f6174 100644 --- a/openid/__init__.py +++ b/openid/__init__.py @@ -22,6 +22,7 @@ module. See the License for the specific language governing permissions and limitations under the License. """ +from __future__ import unicode_literals __version__ = '3.0' diff --git a/openid/consumer/__init__.py b/openid/consumer/__init__.py index aab51a2..bd7aa24 100644 --- a/openid/consumer/__init__.py +++ b/openid/consumer/__init__.py @@ -2,5 +2,6 @@ This package contains the portions of the library used only when implementing an OpenID consumer. """ +from __future__ import unicode_literals __all__ = ['consumer', 'discover'] diff --git a/openid/extensions/__init__.py b/openid/extensions/__init__.py index 5394e7a..e1edd9c 100644 --- a/openid/extensions/__init__.py +++ b/openid/extensions/__init__.py @@ -1,3 +1,4 @@ """OpenID Extension modules.""" +from __future__ import unicode_literals __all__ = ['ax', 'pape', 'sreg'] diff --git a/openid/server/__init__.py b/openid/server/__init__.py index c8fde25..b2e59d1 100644 --- a/openid/server/__init__.py +++ b/openid/server/__init__.py @@ -2,5 +2,6 @@ This package contains the portions of the library used only when implementing an OpenID server. See L{openid.server.server}. """ +from __future__ import unicode_literals __all__ = ['server', 'trustroot'] diff --git a/openid/store/__init__.py b/openid/store/__init__.py index 76509b5..02f20ea 100644 --- a/openid/store/__init__.py +++ b/openid/store/__init__.py @@ -4,5 +4,6 @@ persistent storage. @sort: interface, filestore, sqlstore, memstore """ +from __future__ import unicode_literals __all__ = ['interface', 'filestore', 'sqlstore', 'memstore', 'nonce'] diff --git a/openid/test/__init__.py b/openid/test/__init__.py index a503e99..8de16bf 100644 --- a/openid/test/__init__.py +++ b/openid/test/__init__.py @@ -1,4 +1,6 @@ """Openid library tests.""" +from __future__ import unicode_literals + import unittest diff --git a/openid/yadis/__init__.py b/openid/yadis/__init__.py index a163f80..9fe91c7 100644 --- a/openid/yadis/__init__.py +++ b/openid/yadis/__init__.py @@ -1,4 +1,4 @@ - +from __future__ import unicode_literals __all__ = [ 'constants', -- cgit v1.2.1