Skip to content

Commit 17a9754

Browse files
rjeffmanmrbrandao
authored andcommitted
Make lola module runnable.
Signed-off-by: Rafael Guterres Jeffman <rjeffman@redhat.com>
1 parent 6ee1c04 commit 17a9754

File tree

3 files changed

+2
-2
lines changed

3 files changed

+2
-2
lines changed

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ dependencies = [
2323
# Install with: uv sync --group dev
2424

2525
[project.scripts]
26-
lola = "lola.main:main"
26+
lola = "lola.__main__:main"
2727

2828
[tool.hatch.build.targets.wheel]
2929
packages = ["src/lola"]
File renamed without changes.

tests/test_cli_main.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
"""Tests for the main CLI entry point."""
22

3-
from lola.main import main
3+
from lola.__main__ import main
44
from lola import __version__
55

66

0 commit comments

Comments
 (0)