Skip to content

Commit dab5813

Browse files
authored
Fix typo in README.md (?) (#400)
It looked like I typo with a trailing semicolon that does not look like it was intended
1 parent a1211a8 commit dab5813

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -772,7 +772,7 @@ Notice that we saved the user data in the session before the redirection to have
772772
In order to retrieve attributes we use:
773773

774774
```python
775-
attributes = auth.get_attributes();
775+
attributes = auth.get_attributes()
776776
```
777777

778778
With this method we get a dict with all the user data provided by the IdP in the assertion of the SAML response.
@@ -793,7 +793,7 @@ Each attribute name can be used as a key to obtain the value. Every attribute is
793793
The following code is equivalent:
794794

795795
```python
796-
attributes = auth.get_attributes();
796+
attributes = auth.get_attributes()
797797
print(attributes['cn'])
798798

799799
print(auth.get_attribute('cn'))

0 commit comments

Comments
 (0)