Skip to content

Commit 62bdd94

Browse files
corentinmusardlukasbindreiter
authored andcommitted
Update tilebox-workflows readme (#191)
1 parent cfe40cc commit 62bdd94

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

tilebox-workflows/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ from tilebox.workflows import Client
5252
client = Client(token="YOUR_TILEBOX_API_KEY")
5353

5454
jobs = client.jobs()
55-
jobs.submit("my-very-first-job", "some-compute-cluster", MyFirstTask())
55+
jobs.submit("my-very-first-job", MyFirstTask())
5656
```
5757

5858
And run it:
5959

6060
```python
61-
runner = client.runner("some-compute-cluster", tasks=[MyFirstTask])
61+
runner = client.runner(tasks=[MyFirstTask])
6262
runner.run_all()
6363
```
6464

0 commit comments

Comments
 (0)