Skip to content

Commit

Permalink
Ran nox -s blacken. (#332)
Browse files Browse the repository at this point in the history
  • Loading branch information
dhermes committed Jun 8, 2020
1 parent 5a4f54a commit 323ab59
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
2 changes: 1 addition & 1 deletion nox/_decorators.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
import copy
import functools
import types
from typing import Any, Callable, Iterable, List, Dict, Optional, cast
from typing import Any, Callable, Dict, Iterable, List, Optional, cast

from . import _typing

Expand Down
1 change: 0 additions & 1 deletion nox/manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,6 @@
from nox._decorators import Call, Func
from nox.sessions import Session, SessionRunner


WARN_PYTHONS_IGNORED = "python_ignored"


Expand Down
4 changes: 2 additions & 2 deletions nox/sessions.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,11 @@
Callable,
Dict,
Iterable,
Tuple,
List,
Mapping,
Optional,
Sequence,
Tuple,
Union,
)

Expand All @@ -37,7 +37,7 @@
from nox import _typing
from nox._decorators import Func
from nox.logger import logger
from nox.virtualenv import CondaEnv, ProcessEnv, VirtualEnv, PassthroughEnv
from nox.virtualenv import CondaEnv, PassthroughEnv, ProcessEnv, VirtualEnv

if _typing.TYPE_CHECKING:
from nox.manifest import Manifest
Expand Down
2 changes: 1 addition & 1 deletion nox/tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
from colorlog.escape_codes import parse_colors
from nox import _options, registry
from nox.logger import logger
from nox.manifest import Manifest, WARN_PYTHONS_IGNORED
from nox.manifest import WARN_PYTHONS_IGNORED, Manifest
from nox.sessions import Result


Expand Down
2 changes: 1 addition & 1 deletion tests/test_manifest.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
import pytest
from nox._decorators import Func
from nox.manifest import (
WARN_PYTHONS_IGNORED,
KeywordLocals,
Manifest,
_null_session_func,
WARN_PYTHONS_IGNORED,
)


Expand Down
2 changes: 1 addition & 1 deletion tests/test_tasks.py
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
import nox
import pytest
from nox import _options, sessions, tasks
from nox.manifest import Manifest, WARN_PYTHONS_IGNORED
from nox.manifest import WARN_PYTHONS_IGNORED, Manifest

RESOURCES = os.path.join(os.path.dirname(__file__), "resources")

Expand Down

0 comments on commit 323ab59

Please sign in to comment.