From 94882d212903482c78fa009af2075bb0899bb015 Mon Sep 17 00:00:00 2001 From: Lorenz Diener Date: Tue, 19 Aug 2025 11:20:14 +0300 Subject: [PATCH] Update authentication.py --- mastodon/authentication.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/mastodon/authentication.py b/mastodon/authentication.py index 372f312..95770c0 100644 --- a/mastodon/authentication.py +++ b/mastodon/authentication.py @@ -272,9 +272,7 @@ class Mastodon(Internals): def clear_caches(self): """ - Clear cached data: - * Mastodon version - * Streaming base URL + Clear cached data for astodon version and streaming base URL. Most programs should not have to call this. """ self.__version_check_worked = None self.__version_check_tried = False @@ -531,3 +529,4 @@ class Mastodon(Internals): Fetch information about the current application. """ return self.__api_request('GET', '/api/v1/apps/verify_credentials') +