From 20affc58f093d0a33080a4e6decfc947d993ad32 Mon Sep 17 00:00:00 2001 From: indigo Date: Mon, 5 Dec 2022 00:18:04 +0800 Subject: [PATCH] Update 'README.md' --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4c9b97e..b3cf914 100644 --- a/README.md +++ b/README.md @@ -36,7 +36,7 @@ cmake -build . -config Release -target install Here is some example to demo the library usage ```python from PyNFS import NFS, NFSSH -nfs= NFS('nfs://127.0.0.1/data/tmp/') +nfs = NFS('nfs://127.0.0.1/data/tmp/') a = nfs.open('/test.txt', mode='w+') a.write('Test String') a.close()