Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Ran nox -s blacken. #332

Merged
merged 1 commit into from
Jun 8, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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