Skip to content

Commit

Permalink
Fix model attribute indentation in transaction.rst (#896)
Browse files Browse the repository at this point in the history
  • Loading branch information
saifulazad committed Jan 28, 2021
1 parent d7c704b commit 2e39bc9
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/transaction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ Suppose you have defined a BankStatement model, like in the example below.
class Meta:
table_name = 'BankStatement'
user_id = UnicodeAttribute(hash_key=True)
account_balance = NumberAttribute(default=0)
is_active = BooleanAttribute()
user_id = UnicodeAttribute(hash_key=True)
account_balance = NumberAttribute(default=0)
is_active = BooleanAttribute()
Transact Writes
Expand Down

0 comments on commit 2e39bc9

Please sign in to comment.