We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fa5eae0 commit 9c9c03aCopy full SHA for 9c9c03a
README.rst
@@ -36,7 +36,7 @@ function with a valid application token. Thus, a typical use of the
36
from pushover import init, Client
37
38
init("<token>")
39
- client = Client("<user-key>").send_message("Hello!", title="Hello")
+ Client("<user-key>").send_message("Hello!", title="Hello")
40
41
You can also pass the ``api_token`` optional argument to ``Client`` to
42
initialize the module at the same time:
@@ -92,7 +92,7 @@ by simply doing:
92
93
from pushover import Client
94
95
- client = Client().send_message("Hello!", title="Hello")
+ Client().send_message("Hello!", title="Hello")
96
97
or ``pushover --title "Hello" "Hello!"`` from the command line.
98
0 commit comments