Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] committed Jan 1, 2024
1 parent 00bf9b9 commit 4ae16b8
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion tests/test_config.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,8 @@ def test_pep621_class_valid_config(
config["dependencies"] = list(map(str, config["dependencies"])) # type: ignore[arg-type]
if "optional-dependencies" in config:
config["optional-dependencies"] = {
k: list(map(str, v)) # type: ignore[arg-type]
k:
list(map(str, v)) # type: ignore[arg-type]

Check warning on line 71 in tests/test_config.py

View workflow job for this annotation

GitHub Actions / Flake8

E131: continuation line unaligned for hanging indent
for k, v in config["optional-dependencies"].items()
}

Expand Down

0 comments on commit 4ae16b8

Please sign in to comment.