Skip to content

Commit 8bd64f2

Browse files
committed
fix: String issue
1 parent 40145a7 commit 8bd64f2

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

src/ghastoolkit/octokit/octokit.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -229,7 +229,9 @@ def get(
229229

230230
# Default error handling
231231
logger.error(response_json.get("message"))
232-
logger.error(f"Documentation Link :: {response_json.get('documentation_url', "")}")
232+
logger.error(
233+
f"Documentation Link :: {response_json.get('documentation_url', '')}"
234+
)
233235
raise Exception("REST Request failed :: non-expected server error")
234236

235237
if isinstance(response_json, dict):

0 commit comments

Comments
 (0)