Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,21 +12,21 @@ repos:
- id: end-of-file-fixer

- repo: https://github.com/renovatebot/pre-commit-hooks
rev: 38.110.2
rev: 39.205.1
hooks:
- id: renovate-config-validator
files: ^renovate\.json$

- repo: https://github.com/astral-sh/ruff-pre-commit
rev: v0.6.9
rev: v0.11.0
hooks:
- id: ruff
name: "lint with ruff"
- id: ruff-format
name: "format with ruff"

- repo: https://github.com/pre-commit/mirrors-mypy
rev: "v1.11.2" # Use the sha / tag you want to point at
rev: "v1.15.0" # Use the sha / tag you want to point at
hooks:
- id: mypy
name: "run mypy"
Expand All @@ -35,7 +35,7 @@ repos:

- repo: https://github.com/astral-sh/uv-pre-commit
# uv version.
rev: 0.4.18
rev: 0.6.6
hooks:
# Update the uv lockfile
- id: uv-lock
Expand Down
3 changes: 1 addition & 2 deletions py_maker/helpers.py
Original file line number Diff line number Diff line change
Expand Up @@ -196,8 +196,7 @@ def check_cmd_exists(cmd: str) -> bool:
def confirm_values(choices: ProjectValues) -> bool:
"""Confirm the values entered by the user."""
print(
"\n[green][bold]Creating a New Python app with the below "
"settings :\n"
"\n[green][bold]Creating a New Python app with the below settings :\n"
)

padding: int = max(len(key) for key, _ in choices) + 3
Expand Down
2 changes: 1 addition & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ certifi==2024.8.30
cffi==1.17.1
charset-normalizer==3.3.2
click==8.1.7
colorama==0.4.6 ; platform_system == 'Windows'
colorama==0.4.6 ; sys_platform == 'win32'
cryptography==43.0.1
deprecated==1.2.14
gitdb==4.0.11
Expand Down
Loading