Skip to content

Commit 0bde893

Browse files
committed
Fix bandit B105 false positive on Bearer token type
1 parent aa0ea37 commit 0bde893

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

symbiont/client.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -411,7 +411,7 @@ def refresh_token(self) -> Dict[str, Any]:
411411

412412
return {
413413
"access_token": new_token.token,
414-
"token_type": "Bearer",
414+
"token_type": "Bearer", # nosec B105
415415
"expires_in": self.config.auth.jwt_expiration_seconds
416416
}
417417
else:

0 commit comments

Comments
 (0)