Skip to content

Commit

Permalink
Move stdlib imports above the 3rd party imports as suggested by @mgedmin
Browse files Browse the repository at this point in the history
.
  • Loading branch information
Michael Howitz committed Aug 5, 2016
1 parent 3378ff6 commit d563f51
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions src/zope/app/wsgi/tests.py
Expand Up @@ -12,16 +12,17 @@
#
##############################################################################
"""WSGI tests"""
import doctest
import io
import re
import unittest

from zope.app.wsgi.testing import SillyMiddleWare
from zope.app.wsgi.testlayer import BrowserLayer
from zope.authentication.interfaces import IUnauthenticatedPrincipal
from zope.component.testlayer import ZCMLFileLayer
from zope.publisher.interfaces.logginginfo import ILoggingInfo
from zope.testing import renormalizing
import doctest
import io
import re
import unittest
import zope.app.wsgi
import zope.component
import zope.component.testing
Expand Down

0 comments on commit d563f51

Please sign in to comment.