We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 111e514 commit 4591bfbCopy full SHA for 4591bfb
dosei_sdk/main.py
@@ -17,7 +17,7 @@ def run(func=None):
17
app: Dosei = import_from_string(dosei_init)
18
except ImportFromStringError:
19
raise ImportFromStringError(f"Couldn't find a dosei.py file in \"{os.getcwd()}\"")
20
- if app.command is None:
+ if app.run is None:
21
raise ImportFromStringError('Command "run" not found.')
22
os.system(app.run)
23
pyproject.toml
@@ -1,6 +1,6 @@
1
[tool.poetry]
2
name = "dosei-sdk"
3
-version = "0.0.19"
+version = "0.0.20"
4
description = "Dosei Python SDK"
5
authors = ["Alvaro Molina <[email protected]>"]
6
license = "Apache-2.0"
0 commit comments