From 22bfa5298a3a6d13030414b8ea0f1ed4a14c26f1 Mon Sep 17 00:00:00 2001 From: Terrence Brannon Date: Sat, 17 Jun 2017 06:00:22 -0400 Subject: [PATCH] Correct documentation for limit parameter of steem.account.Account.get_account_history --- steem/account.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steem/account.py b/steem/account.py index a7ac475..b7fa2e1 100644 --- a/steem/account.py +++ b/steem/account.py @@ -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 @@ -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