aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--README.rst4
1 files changed, 2 insertions, 2 deletions
diff --git a/README.rst b/README.rst
index 24f7075..fa2332e 100644
--- a/README.rst
+++ b/README.rst
@@ -36,7 +36,7 @@ function with a valid application token. Thus, a typical use of the
from pushover import init, Client
init("<token>")
- client = Client("<user-key>").send_message("Hello!", title="Hello")
+ Client("<user-key>").send_message("Hello!", title="Hello")
You can also pass the ``api_token`` optional argument to ``Client`` to
initialize the module at the same time:
@@ -92,7 +92,7 @@ by simply doing:
from pushover import Client
- client = Client().send_message("Hello!", title="Hello")
+ Client().send_message("Hello!", title="Hello")
or ``pushover --title "Hello" "Hello!"`` from the command line.