From d3c916794d21feaa2b7bb8becd22e2c2760f64b2 Mon Sep 17 00:00:00 2001 From: Tim Gates Date: Tue, 23 Nov 2021 06:22:50 +1100 Subject: [PATCH] docs: fix simple typo, persistant -> persistent There is a small typo in rdioapi/__init__.py. Should read `persistent` rather than `persistant`. --- rdioapi/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rdioapi/__init__.py b/rdioapi/__init__.py index 4e11d96..4306551 100644 --- a/rdioapi/__init__.py +++ b/rdioapi/__init__.py @@ -66,7 +66,7 @@ def __str__(self): class AuthStore(object): - """A wrapper around the persistant storage that must be passed in.""" + """A wrapper around the persistent storage that must be passed in.""" _KEYS = ['device_code', 'device_expires', 'device_interval', 'refresh_token', 'access_token', 'access_token_expires']