Skip to content

Commit

Permalink
Fixed overindent in README.rst
Browse files Browse the repository at this point in the history
  • Loading branch information
jlafon committed Jan 29, 2014
1 parent 4c38bce commit 77c1802
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -33,13 +33,13 @@ Create a model that describes your DynamoDB table.
from pynamodb.attributes import UnicodeAttribute
class UserModel(Model):
"""
A DynamoDB User
"""
table_name = 'dynamodb-user'
email = UnicodeAttribute(null=True)
first_name = UnicodeAttribute(range_key=True)
last_name = UnicodeAttribute(hash_key=True)
"""
A DynamoDB User
"""
table_name = 'dynamodb-user'
email = UnicodeAttribute(null=True)
first_name = UnicodeAttribute(range_key=True)
last_name = UnicodeAttribute(hash_key=True)
Now, search your table for all users with a last name of 'Smith' and whose
first name begins with 'J':
Expand Down

0 comments on commit 77c1802

Please sign in to comment.