Skip to content

Commit

Permalink
Upgrade black to latest 22.3.0 (#69)
Browse files Browse the repository at this point in the history
The current version of black had problems with ``click`` library so we
upgrade to the latest black version, where the problems are fixed.
  • Loading branch information
mristin committed Jun 5, 2022
1 parent e02639f commit 42d1f76
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion benchmark.py
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ def benchmark_against_others(repo_root: pathlib.Path, overwrite: bool) -> None:


def main() -> int:
""""Execute main routine."""
"""Execute main routine."""
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"--overwrite",
Expand Down
2 changes: 1 addition & 1 deletion precommit.py
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@


def main() -> int:
""""Execute entry_point routine."""
"""Execute entry_point routine."""
parser = argparse.ArgumentParser(description=__doc__)
parser.add_argument(
"--overwrite",
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@
# fmt: off
extras_require={
"dev": [
"black==20.8b1",
"black==22.3.0",
"mypy==0.902",
"pylint==2.3.1",
"pydocstyle>=2.1.1,<3",
Expand Down

0 comments on commit 42d1f76

Please sign in to comment.