From a60ac9b2fb075630e6defab8e9ef13cef3acf22d Mon Sep 17 00:00:00 2001 From: Semnodime Date: Wed, 10 Apr 2024 13:13:26 +0200 Subject: [PATCH] Update README.md Make formatting consistent. --- python/README.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/python/README.md b/python/README.md index 5889e2e..2f035c9 100644 --- a/python/README.md +++ b/python/README.md @@ -20,10 +20,10 @@ $ pip3 install rzpipe ```python import rzpipe -pipe = rzpipe.open("/bin/ls") +pipe = rzpipe.open('/bin/ls') pipe.cmd('aa') -print(pipe.cmd("afl")) -print(pipe.cmdj("aflj")) # parses the JSON and returns a dict (note the lowercase j) -print(pipe.cmdJ("ij").core.format) # parses the JSON and returns a namedtuple (note the uppercase J) +print(pipe.cmd('afl')) +print(pipe.cmdj('aflj')) # parses the JSON and returns a dict (note the lowercase j) +print(pipe.cmdJ('ij').core.format) # parses the JSON and returns a namedtuple (note the uppercase J) pipe.quit() ```