Skip to content

Commit

Permalink
0.0.18a3
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Feb 6, 2024
1 parent 171cf29 commit 3fac6ac
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions dosei/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def run(func):
if func:
return Dosei.call_func(import_from_string(func))
try:
app: Dosei = import_from_string("dosei:dosei")
app: Dosei = import_from_string("dosei_config:dosei")
except ImportFromStringError:
raise click.ClickException(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
if app.dev is None:
Expand All @@ -33,7 +33,7 @@ def run(func):
@cli.command()
def dev():
try:
app: Dosei = import_from_string("dosei:dosei")
app: Dosei = import_from_string("dosei_config:dosei")
except ImportFromStringError:
raise click.ClickException(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
if app.dev is None:
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "dosei"
version = "0.0.18a2"
version = "0.0.18a3"
description = "Dosei Python SDK"
authors = ["Alvaro Molina <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 3fac6ac

Please sign in to comment.