Skip to content

Commit 4591bfb

Browse files
committed
0.0.20
1 parent 111e514 commit 4591bfb

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

dosei_sdk/main.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ def run(func=None):
1717
app: Dosei = import_from_string(dosei_init)
1818
except ImportFromStringError:
1919
raise ImportFromStringError(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
20-
if app.command is None:
20+
if app.run is None:
2121
raise ImportFromStringError('Command "run" not found.')
2222
os.system(app.run)
2323

pyproject.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dosei-sdk"
3-
version = "0.0.19"
3+
version = "0.0.20"
44
description = "Dosei Python SDK"
55
authors = ["Alvaro Molina <[email protected]>"]
66
license = "Apache-2.0"

0 commit comments

Comments
 (0)