From 3c1dc4a27a58bd320b14d88725b91b0626757558 Mon Sep 17 00:00:00 2001 From: cootshk <83678457+cootshk@users.noreply.github.com> Date: Wed, 1 Nov 2023 23:28:58 -0500 Subject: [PATCH] change example to force reinstall Signed-off-by: cootshk <83678457+cootshk@users.noreply.github.com> --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index edb6ca2..e748449 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ Implementing tables from Lua into Python 3.12 ## Usage ```bash -pip install python-tables +pip install -U python-tables ``` ```py @@ -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")) -``` \ No newline at end of file +```