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

add more flake8 lints #2653

Merged
merged 1 commit into from Nov 29, 2021
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
5 changes: 4 additions & 1 deletion .pre-commit-config.yaml
Expand Up @@ -35,7 +35,10 @@ repos:
rev: 3.9.2
hooks:
- id: flake8
additional_dependencies: [flake8-bugbear]
additional_dependencies:
- flake8-bugbear
- flake8-comprehensions
- flake8-simplify

- repo: https://github.com/pre-commit/mirrors-mypy
rev: v0.910
Expand Down
1 change: 1 addition & 0 deletions CHANGES.md
Expand Up @@ -7,6 +7,7 @@
- Fixed Python 3.10 support on platforms without ProcessPoolExecutor (#2631)
- Fixed `match` statements with open sequence subjects, like `match a, b:` (#2639)
- Fixed assignment to environment variables in Jupyter Notebooks (#2642)
- Add `flake8-simplify` and `flake8-comprehensions` plugins (#2653)

## 21.11b1

Expand Down
2 changes: 1 addition & 1 deletion src/black/__init__.py
Expand Up @@ -181,7 +181,7 @@ def validate_regex(


@click.command(
context_settings=dict(help_option_names=["-h", "--help"]),
context_settings={"help_option_names": ["-h", "--help"]},
# While Click does set this field automatically using the docstring, mypyc
# (annoyingly) strips 'em so we need to set it here too.
help="The uncompromising code formatter.",
Expand Down
4 changes: 2 additions & 2 deletions src/black/output.py
Expand Up @@ -59,8 +59,8 @@ def diff(a: str, b: str, a_name: str, b_name: str) -> str:
"""Return a unified diff string between strings `a` and `b`."""
import difflib

a_lines = [line for line in a.splitlines(keepends=True)]
b_lines = [line for line in b.splitlines(keepends=True)]
a_lines = a.splitlines(keepends=True)
b_lines = b.splitlines(keepends=True)
diff_lines = []
for line in difflib.unified_diff(
a_lines, b_lines, fromfile=a_name, tofile=b_name, n=5
Expand Down
2 changes: 1 addition & 1 deletion tests/optional.py
Expand Up @@ -96,7 +96,7 @@ def pytest_collection_modifyitems(config: "Config", items: "List[Node]") -> None
enabled_optional_markers = store[ENABLED_OPTIONAL_MARKERS]

for item in items:
all_markers_on_test = set(m.name for m in item.iter_markers())
all_markers_on_test = {m.name for m in item.iter_markers()}
optional_markers_on_test = all_markers_on_test & all_possible_optional_markers
if not optional_markers_on_test or (
optional_markers_on_test & enabled_optional_markers
Expand Down
2 changes: 1 addition & 1 deletion tests/test_black.py
Expand Up @@ -1755,7 +1755,7 @@ def assert_collected_sources(
report=black.Report(),
stdin_filename=stdin_filename,
)
assert sorted(list(collected)) == sorted(gs_expected)
assert sorted(collected) == sorted(gs_expected)


class TestFileCollection:
Expand Down