Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
MaxHalford committed Oct 16, 2023
1 parent a953c27 commit a8ef678
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,13 +282,13 @@ orders
>>> dag = DAGOfViews(views)
>>> while dag.is_active():
... for schema, table in dag.get_ready():
... print(f'At {schema}.{table}')
... print(f'{schema}.{table}')
... dag.done((schema, table))
At staging.payments
At staging.orders
At staging.customers
At core.orders
At core.customers
staging.payments
staging.orders
staging.customers
core.orders
core.customers

```

Expand Down

0 comments on commit a8ef678

Please sign in to comment.