Skip to content

Commit 9c9c03a

Browse files
committed
Fix inconsistency in the doc
1 parent fa5eae0 commit 9c9c03a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.rst

+2-2
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ function with a valid application token. Thus, a typical use of the
3636
from pushover import init, Client
3737
3838
init("<token>")
39-
client = Client("<user-key>").send_message("Hello!", title="Hello")
39+
Client("<user-key>").send_message("Hello!", title="Hello")
4040
4141
You can also pass the ``api_token`` optional argument to ``Client`` to
4242
initialize the module at the same time:
@@ -92,7 +92,7 @@ by simply doing:
9292
9393
from pushover import Client
9494
95-
client = Client().send_message("Hello!", title="Hello")
95+
Client().send_message("Hello!", title="Hello")
9696
9797
or ``pushover --title "Hello" "Hello!"`` from the command line.
9898

0 commit comments

Comments
 (0)