From e6d4ba1e25d261dedae1c6be29cd617734a07cb7 Mon Sep 17 00:00:00 2001 From: Yehuda Deutsch Date: Mon, 11 Nov 2024 23:30:20 -0500 Subject: [PATCH] Fix __main__ --- ajal_todo_cli/__main__.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ajal_todo_cli/__main__.py b/ajal_todo_cli/__main__.py index 7faa3e6..fab757c 100644 --- a/ajal_todo_cli/__main__.py +++ b/ajal_todo_cli/__main__.py @@ -1,3 +1,3 @@ -from app import cli +from .app import cli cli() diff --git a/pyproject.toml b/pyproject.toml index a070885..29767d5 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [project] name = "ajal-todo-cli" -version = "0.1.1" +version = "0.1.2" description = "Add your description here" readme = "README.md" requires-python = ">=3.12"