Skip to content

Commit 52b1fc5

Browse files
committed
fix a typo in calling the method noop
1 parent f064e90 commit 52b1fc5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

google/auth/credentials.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -310,7 +310,7 @@ def apply(self, headers, token=None):
310310
"""Apply the token to the authentication header."""
311311
super().apply(headers, token)
312312
if self._trust_boundary is not None:
313-
if self._has_no_op_trust_boundary:
313+
if self._has_no_op_trust_boundary():
314314
# STS expects an empty string if the trust boundary value is no-op.
315315
headers["x-allowed-locations"] = ""
316316
else:

0 commit comments

Comments
 (0)