From f20916bd34055919e85916a15aa822ffabd632eb Mon Sep 17 00:00:00 2001 From: Johannes Gross <1848069+jodergrosse@users.noreply.github.com> Date: Sat, 7 Mar 2020 22:18:55 +0100 Subject: [PATCH] replace wrong function name --- docs/source/quickstart.rst | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/source/quickstart.rst b/docs/source/quickstart.rst index a718e99..4cda186 100644 --- a/docs/source/quickstart.rst +++ b/docs/source/quickstart.rst @@ -26,7 +26,7 @@ and use the code you see on the webpage rmapy = Client() # Should return False - rmapy.is_authenticated() + rmapy.is_auth() # This registers the client as a new device. The received device token is # stored in the users directory in the file ~/.rmapi, the same as with the # go rmapi client. @@ -35,7 +35,7 @@ and use the code you see on the webpage # a new session. rmapy.refresh_token() # Should return True - rmapy.is_authenticated() + rmapy.is_auth() Working with items ~~~~~~~~~~~~~~~~~~