From 85ca9558f9a3ccf52448ccf4e261b36405e0259f Mon Sep 17 00:00:00 2001 From: iuvbio Date: Thu, 1 Jul 2021 20:00:35 +0300 Subject: [PATCH] misc: fix README --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index ea0add7..36373cf 100644 --- a/README.md +++ b/README.md @@ -32,7 +32,7 @@ from pandas_ods_reader import read_ods path = "path/to/file.ods" # by default the first sheet is imported -df = pd.read_ods(path) +df = read_ods(path) # load a sheet based on its index (1 based) sheet_idx = 1