Skip to content

Commit

Permalink
Correct documentation for limit parameter of steem.account.Account.ge…
Browse files Browse the repository at this point in the history
…t_account_history
  • Loading branch information
metaperl committed Jun 17, 2017
1 parent 6a1ef53 commit 22bfa52
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions steem/account.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def profile(self):
with suppress(TypeError):
return get_in(self, ['json_metadata', 'profile'], default={})
return {}

@property
def sp(self):
vests = Amount(self['vesting_shares']).amount
Expand Down Expand Up @@ -233,7 +233,7 @@ def get_account_history(self, index, limit, start=None, stop=None, order=-1, fil
Args:
index (int): start index for get_account_history
limit (int): end index for get_account_history
limit (int): How many items are we interested in.
start (int): (Optional) skip items until this index
stop (int): (Optional) stop iteration early at this index
order: (1, -1): 1 for chronological, -1 for reverse order
Expand Down

0 comments on commit 22bfa52

Please sign in to comment.