Skip to content

Commit

Permalink
change example to force reinstall
Browse files Browse the repository at this point in the history
Signed-off-by: cootshk <83678457+cootshk@users.noreply.github.com>
  • Loading branch information
cootshk authored Nov 2, 2023
1 parent 4ac19d2 commit 3c1dc4a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Implementing tables from Lua into Python 3.12
## Usage

```bash
pip install python-tables
pip install -U python-tables
```

```py
Expand All @@ -20,4 +20,4 @@ print(repr(tbl)) # Table([1]; {"foo": "bar"})
tbl += [2,3,4]
print(tbl) # <1, 2, 3, 4, foo: 'bar'>
print(tbl == Table(1,2,3,4,foo="bar"))
```
```

0 comments on commit 3c1dc4a

Please sign in to comment.