diff --git a/nox/command.py b/nox/command.py index b2e99cef..a9a14a82 100644 --- a/nox/command.py +++ b/nox/command.py @@ -14,7 +14,7 @@ import os import sys -from typing import Any, Iterable, Optional, Sequence, Union, List +from typing import Any, Iterable, List, Optional, Sequence, Union import py from nox.logger import logger diff --git a/nox/virtualenv.py b/nox/virtualenv.py index d3f48b6f..54c3b4df 100644 --- a/nox/virtualenv.py +++ b/nox/virtualenv.py @@ -16,9 +16,9 @@ import platform import re import shutil -from socket import gethostbyname import sys -from typing import Any, Mapping, Optional, Tuple, Union, List +from socket import gethostbyname +from typing import Any, List, Mapping, Optional, Tuple, Union import nox.command import py diff --git a/tests/test_logger.py b/tests/test_logger.py index eef9dcf3..50563bd5 100644 --- a/tests/test_logger.py +++ b/tests/test_logger.py @@ -16,7 +16,6 @@ from unittest import mock import pytest - from nox import logger