Skip to content

Commit 8b1037b

Browse files
authored
Fix documentation syntax error (#519)
1 parent 7eb6a0d commit 8b1037b

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/add_custom_data_claims.rst

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,8 +29,8 @@ going to the data supplied by the ``additional_claims`` argument.
2929
# claims to add to the JWT.
3030
@jwt.additional_claims_loader
3131
def add_claims_to_access_token(identity):
32-
return = {
33-
"aud": "some_audience",
34-
"foo": "bar",
35-
"upcase_name": identity.upper(),
36-
}
32+
return {
33+
"aud": "some_audience",
34+
"foo": "bar",
35+
"upcase_name": identity.upper(),
36+
}

0 commit comments

Comments
 (0)