new command new)

This commit is contained in:
2026-02-10 13:41:51 +03:00
parent 18a8376469
commit 6ed1d35e8a
4 changed files with 119 additions and 3 deletions
-1
View File
@@ -78,7 +78,6 @@ def create_file(path: Path, content: str) -> None:
if not path.exists():
path.parent.mkdir(parents=True, exist_ok=True)
path.write_text(content.strip(), encoding="utf-8")
print(f"Created: {path}")
else:
print(f"Skipped: {path} (already exists)")