Skip to content

Commit

Permalink
Sort imports using isort
Browse files Browse the repository at this point in the history
Run the blacken session on the codebase.
  • Loading branch information
Claudio Jolowicz authored and stsewd committed Nov 26, 2020
1 parent 495b23f commit 6dc712a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 4 deletions.
2 changes: 1 addition & 1 deletion nox/command.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions nox/virtualenv.py
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
1 change: 0 additions & 1 deletion tests/test_logger.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from unittest import mock

import pytest

from nox import logger


Expand Down

0 comments on commit 6dc712a

Please sign in to comment.