From 9a28376d388660cf87e1cb4dee572de4633cce21 Mon Sep 17 00:00:00 2001 From: Nick Schouten Date: Wed, 20 Nov 2024 15:59:48 +0100 Subject: [PATCH] less strange docs, the base64 is a useless token --- papermill/iorw.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/papermill/iorw.py b/papermill/iorw.py index 43a848ae..934f1b2e 100644 --- a/papermill/iorw.py +++ b/papermill/iorw.py @@ -168,7 +168,7 @@ class HttpHandler: @classmethod def _get_auth_kwargs(cls): """Gets the Authorization header from PAPERMILL_HTTP_AUTH_HEADER. - A valid value could be Basic dW5hbWU6cGFzc3dvcmQK""" + A valid example value Basic dW5hbWU6cGFzc3dvcmQK""" auth_header = os.environ.get('PAPERMILL_HTTP_AUTH_HEADER', None) if auth_header: return {'headers': {'Authorization': auth_header}}