mirror of
https://github.com/Hopiu/djLint.git
synced 2026-04-27 00:14:44 +00:00
updated style
This commit is contained in:
parent
d0192d3592
commit
3f1bb50091
2 changed files with 2 additions and 2 deletions
2
setup.py
2
setup.py
|
|
@ -33,7 +33,7 @@ setup(
|
|||
package_dir={"": "src"},
|
||||
packages=find_packages(where="src"),
|
||||
python_requires=">=3.6",
|
||||
install_requires=["click>=7.1.2", "appdirs", "toml", "pyyaml"],
|
||||
install_requires=["click>=7.1.2", "pyyaml>=5.4.1"],
|
||||
test_suite="tests.test_djlint",
|
||||
extras_require={
|
||||
"colorama": ["colorama>=0.4.3"],
|
||||
|
|
|
|||
|
|
@ -117,7 +117,7 @@ def main(src: str, extension: str):
|
|||
if errors:
|
||||
echo(
|
||||
"{}\n{}\n{}===============================".format(
|
||||
Fore.GREEN, this_file, Style.DIM
|
||||
Fore.GREEN + Style.BRIGHT, this_file, Style.DIM
|
||||
)
|
||||
+ Style.RESET_ALL
|
||||
)
|
||||
|
|
|
|||
Loading…
Reference in a new issue