Skip to content

Commit ef69b87

Browse files
committed
fix readme
1 parent 2b9f350 commit ef69b87

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -49,13 +49,13 @@ Since the project is considered multi-sync, it will work in a sync/async environ
4949
# async example - it will default to async
5050
import mystbin
5151

52-
mystbin_client = mystbin.Client()
52+
client = mystbin.Client()
5353

5454
paste = await client.create_paste(filename="Hello.txt", content="Hello there!")
5555
str(paste)
5656
>>> 'https://mystb.in/<your generated ID>'
5757

58-
get_paste = await mystbin_client.get_paste("<your generated ID>")
58+
get_paste = await client.get_paste("<your generated ID>")
5959
get_paste.files[0].content
6060
>>> "Hello there!"
6161

0 commit comments

Comments
 (0)