capless / warrant

Python library for using AWS Cognito. With support for SRP.
Apache License 2.0
470 stars 191 forks source link

Cleanup README code examples #18

Closed grantmcconnaughey closed 7 years ago

grantmcconnaughey commented 7 years ago

This PR cleans up some of the README code examples.

This PR looks like I changed a lot of lines because my editor cleans up all trailing whitespace on save.

grantmcconnaughey commented 7 years ago

Hey @ebpetway. Sorry about that! I added the hanging indent parentheses back. So this:

u = Cognito('your-user-pool-id','your-client-id',
    username='bob'
)

changed to this:

u = Cognito('your-user-pool-id','your-client-id',
    username='bob')

Let me know if that's not what you had in mind. Thanks!