From e98bae569a3afb78dc754029ff3e74fc39108527 Mon Sep 17 00:00:00 2001 From: Jason Niebauer Date: Thu, 22 Apr 2021 11:30:09 -0500 Subject: [PATCH] Fix typo in code comment Found a minor typo of "Grand" that should be "Grant" in a code comment for the `_jwt_auth` class method. --- app/docusign/ds_client.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/docusign/ds_client.py b/app/docusign/ds_client.py index 8d1b9bf1..237c4585 100644 --- a/app/docusign/ds_client.py +++ b/app/docusign/ds_client.py @@ -103,7 +103,7 @@ def _jwt_auth(cls): except ApiException as err: body = err.body.decode('utf8') - # Grand explicit consent for the application + # Grant explicit consent for the application if "consent_required" in body: consent_scopes = " ".join(use_scopes) redirect_uri = DS_CONFIG["app_url"] + url_for("ds.ds_callback")