Skip to content

Commit

Permalink
Lint
Browse files Browse the repository at this point in the history
  • Loading branch information
kdeldycke committed Oct 2, 2023
1 parent 46dca10 commit f6577c5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion meta_package_manager/bar_plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ def pp(label: str, *args: str) -> None:
print(
label.strip(),
"|",
*(l for l in map(methodcaller("strip"), args) if l),
*(line for line in map(methodcaller("strip"), args) if line),
sep=" ",
)

Expand Down
2 changes: 1 addition & 1 deletion meta_package_manager/tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ def pytest_report_header(config: Config, start_path, startdir) -> tuple[str, ...


@fixture()
def invoke(extra_runner):
def invoke(extra_runner): # noqa: F811
return partial(extra_runner.invoke, mpm)


Expand Down

0 comments on commit f6577c5

Please sign in to comment.