Skip to content

Commit

Permalink
blackify docs in README
Browse files Browse the repository at this point in the history
  • Loading branch information
dougthor42 committed Nov 7, 2023
1 parent 0531147 commit 8b0dd9a
Showing 1 changed file with 13 additions and 10 deletions.
23 changes: 13 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -92,21 +92,24 @@ The easiest way to use this to to:
1. Set up your data as a list of (grid_x, grid_y, value) tuples:

```pycon
>>> data = [(grid_x_1, grid_y_1, data_1), # 1st die
... (grid_x_2, grid_y_2, data_2), # 2nd die
... (grid_x_3, grid_y_3, data_3) # 3rd die and so on
... ]
>>> data = [
... (grid_x_1, grid_y_1, data_1), # 1st die
... (grid_x_2, grid_y_2, data_2), # 2nd die
... (grid_x_3, grid_y_3, data_3), # 3rd die and so on
... ]
```

2. Call `wm_app.WaferMapApp`.

```pycon
>>> wm_app.WaferMapApp(data,
... die_size,
... center_xy,
... dia,
... edge_excl,
... flat_excl)
>>> wm_app.WaferMapApp(
... data,
... die_size,
... center_xy,
... dia,
... edge_excl,
... flat_excl,
... )
```

The input parameters for WaferMapApp are:
Expand Down

0 comments on commit 8b0dd9a

Please sign in to comment.