Skip to content
Snippets Groups Projects
Commit 63c53811 authored by Holger Nahrstaedt's avatar Holger Nahrstaedt
Browse files

small fix, bump to next version

parent d8c99b7c
No related branches found
No related tags found
No related merge requests found
......@@ -100,6 +100,8 @@ class Account(BlockchainObject):
return self.reputation()
def print_info(self, force_refresh=False, return_str=False):
""" Prints import information about the account
"""
if force_refresh:
self.refresh()
self.steem.refresh_data(True)
......@@ -120,7 +122,7 @@ class Account(BlockchainObject):
rep = int(self['reputation'])
if rep == 0:
return 25
score = (math.log10(abs(rep)) - 9) * 9 + 25
score = max([math.log10(abs(rep)) - 9, 0]) * 9 + 25
if rep < 0:
score = 50 - score
if precision is not None:
......@@ -173,7 +175,7 @@ class Account(BlockchainObject):
if missing_vp < 0:
return 0
recharge_seconds = missing_vp * 100 * 5 * 86400 / 10000
return round(missing_vp * recharge_seconds / 60 / 60, precision)
return round(recharge_seconds / 60 / 60, precision)
def get_recharge_reminder_minutes(self, voting_power_goal=100, precision=0):
hours = self.get_recharge_hours(voting_power_goal=voting_power_goal, precision=5)
......
......@@ -7,9 +7,10 @@ log = logging.getLogger(__name__)
class Query(dict):
def __init__(self, limit=0, truncate_body=0):
def __init__(self, limit=0, tag="", truncate_body=0):
self["limit"] = limit
self["truncate_body"] = truncate_body
self["tag"] = tag
class Discussions_by_trending(list):
......@@ -185,7 +186,7 @@ class Discussions_by_hot(list):
class Discussions_by_feed(list):
""" get_discussions_by_feed
:param str discussion_query
:param str discussion_query, tag musst be set to a username
:param steem steem_instance: Steem() instance to use when accesing a RPC
"""
def __init__(self, discussion_query, steem_instance=None):
......@@ -202,7 +203,7 @@ class Discussions_by_feed(list):
class Discussions_by_blog(list):
""" get_discussions_by_blog
:param str discussion_query
:param str discussion_query, tag musst be set to a username
:param steem steem_instance: Steem() instance to use when accesing a RPC
"""
def __init__(self, discussion_query, steem_instance=None):
......
# THIS FILE IS GENERATED FROM beem SETUP.PY
version = '0.19.5'
version = '0.19.6'
# THIS FILE IS GENERATED FROM beem SETUP.PY
version = '0.19.5'
version = '0.19.6'
# THIS FILE IS GENERATED FROM beem SETUP.PY
version = '0.19.5'
version = '0.19.6'
......@@ -14,7 +14,7 @@ except LookupError:
ascii = codecs.lookup('ascii')
codecs.register(lambda name, enc=ascii: {True: enc}.get(name == 'mbcs'))
VERSION = '0.19.5'
VERSION = '0.19.6'
def write_version_py(filename):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment