We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ab95394 commit 8b5dda1Copy full SHA for 8b5dda1
.github/workflows/ci_cd.yml
@@ -50,6 +50,7 @@ jobs:
50
- name: "Run basic example"
51
run: |
52
.venv\Scripts\activate
53
+ python -c "import sys; print(sys.executable)"
54
python examples/BasicExample.py
55
56
# doc-style:
examples/BasicExample.py
@@ -39,7 +39,7 @@
39
workflow_path = os.path.join(cwd, workflow_filename)
40
41
print("Initializing workflow engine...")
42
-with Engine(heartbeat_interval=60*1_000) as mc:
+with Engine(heartbeat_interval=60 * 1_000) as mc:
43
print("Loading workflow: " + workflow_path)
44
with mc.load_workflow(workflow_path) as workflow:
45
print("Loaded: " + workflow_filename)
0 commit comments