fix: remove unused import 'main' from mempalace/__init__.py

Removed the 'main' import from `mempalace/__init__.py` and updated
`pyproject.toml` to point the script entry point directly to
`mempalace.cli:main`. This ensures the CLI remains functional while
improving code hygiene.

Co-authored-by: igorls <4753812+igorls@users.noreply.github.com>
This commit is contained in:
google-labs-jules[bot]
2026-04-13 21:16:03 +00:00
parent 95a8d7176a
commit f3c6770ecf
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -35,7 +35,7 @@ Repository = "https://github.com/milla-jovovich/mempalace"
"Bug Tracker" = "https://github.com/milla-jovovich/mempalace/issues"
[project.scripts]
mempalace = "mempalace:main"
mempalace = "mempalace.cli:main"
[project.optional-dependencies]
dev = ["pytest>=7.0", "pytest-cov>=4.0", "ruff>=0.4.0", "psutil>=5.9"]