Skip to content

Commit

Permalink
Update README.md
Browse files Browse the repository at this point in the history
Make formatting consistent.
  • Loading branch information
Semnodime authored Apr 10, 2024
1 parent 2f8128c commit a60ac9b
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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()
```

0 comments on commit a60ac9b

Please sign in to comment.