Skip to content

Commit

Permalink
fix readme tests
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Oct 16, 2023
1 parent e9bf8d8 commit 28bed20
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -293,14 +293,14 @@ staging.payments
>>> views = [v for v in views if v.schema != 'tests']
>>> dag = DAGOfViews(views)
>>> while dag.is_active():
... for schema, table in dag.get_ready():
... for schema, table in sorted(dag.get_ready()):
... print(f'{schema}.{table}')
... dag.done((schema, table))
staging.payments
staging.orders
staging.customers
core.orders
staging.orders
staging.payments
core.customers
core.orders

```

Expand Down
2 changes: 1 addition & 1 deletion examples/jaffle_shop/docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,8 +10,8 @@
```mermaid
%%{init: {"flowchart": {"defaultRenderer": "elk"}} }%%
flowchart TB
core(core)
staging(staging)
core(core)
staging --> core
```

Expand Down

0 comments on commit 28bed20

Please sign in to comment.