Skip to content

Commit

Permalink
0.0.20
Browse files Browse the repository at this point in the history
  • Loading branch information
Alw3ys committed Feb 12, 2024
1 parent 111e514 commit 4591bfb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion dosei_sdk/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ def run(func=None):
app: Dosei = import_from_string(dosei_init)
except ImportFromStringError:
raise ImportFromStringError(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
if app.command is None:
if app.run is None:
raise ImportFromStringError('Command "run" not found.')
os.system(app.run)

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-sdk"
version = "0.0.19"
version = "0.0.20"
description = "Dosei Python SDK"
authors = ["Alvaro Molina <[email protected]>"]
license = "Apache-2.0"
Expand Down

0 comments on commit 4591bfb

Please sign in to comment.