diff --git a/package.json b/package.json index 4b3c27c..4780a5c 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "djlint", - "version": "1.14.2", + "version": "1.17.0", "description": "HTML Template Linter and Formatter", "main": "./bin/index.js", "directories": { diff --git a/pyproject.toml b/pyproject.toml index a1f776e..0ff7a83 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -7,7 +7,7 @@ build-backend = "poetry.core.masonry.api" [tool.poetry] name="djlint" -version="1.14.2" +version="1.17.0" description="HTML Template Linter and Formatter" license="GPL-3.0-or-later" authors=["Christopher Pickering "] diff --git a/src/djlint/output.py b/src/djlint/output.py index aa54f9b..c0917d3 100644 --- a/src/djlint/output.py +++ b/src/djlint/output.py @@ -204,9 +204,7 @@ def build_stats_output(errors: List[Optional[Any]], config: Config) -> int: echo() width, _ = shutil.get_terminal_size() echo( - f"{Fore.GREEN}{Style.BRIGHT}Statistics{Style.RESET_ALL}\n{Style.DIM}" - + "".join(["─" for x in range(1, width)]) - + Style.RESET_ALL + f"{Fore.GREEN}{Style.BRIGHT}Statistics{Style.RESET_ALL}\n{Style.DIM}{'─' * width}{Style.RESET_ALL}" ) if messages and codes: diff --git a/tox.ini b/tox.ini index 624d5a8..3cb923d 100644 --- a/tox.ini +++ b/tox.ini @@ -22,7 +22,7 @@ allowlist_externals = black [testenv:lint] deps = ; flake8 has a dep conflict - ; some can be installed manaully + ; some can be installed manually ; here. flake8 flake8-print