From f43115c4cba1a00979475ffd63aa71f9f5631b95 Mon Sep 17 00:00:00 2001 From: Brooks Travis Date: Sun, 13 Oct 2024 00:19:09 -0500 Subject: [PATCH] fix typo --- folioclient/FolioClient.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/folioclient/FolioClient.py b/folioclient/FolioClient.py index a7a0dce..262aa13 100644 --- a/folioclient/FolioClient.py +++ b/folioclient/FolioClient.py @@ -30,6 +30,7 @@ USER_AGENT_STRING = "Folio Client (https://github.com/FOLIO-FSE/FolioClient)" + class FolioClient: """handles communication and getting values from FOLIO""" @@ -445,7 +446,7 @@ def get_latest_from_github( ): # noqa: S107 github_headers = { "content-type": CONTENT_TYPE_JSON, - "User-Agent": USER_AGENT_STRING,", + "User-Agent": USER_AGENT_STRING, } if personal_access_token: github_headers["authorization"] = f"token {personal_access_token}"