Skip to content
Snippets Groups Projects
Commit 7220734d authored by Holger's avatar Holger
Browse files

Fix flake8 and improve steemconnect fix for #57

parent d655d669
No related branches found
Tags 0.19.49
No related merge requests found
......@@ -289,7 +289,10 @@ class SteemConnect(object):
if redirect_uri is not None:
params.update({"redirect_uri": redirect_uri})
params = urlencode(params).replace("%27", "%22")
for key in params:
if isinstance(params[key], list):
params[key] = json.dumps(params[key])
params = urlencode(params)
url = urljoin(base_url, "sign/%s" % operation)
url += "?" + params
......
......@@ -474,7 +474,7 @@ class Testcases(unittest.TestCase):
content = self.bts.rpc.get_accounts([account["name"]])[0]
keys = list(content.keys())
json_content = account.json()
exclude_list = [] # ['json_metadata', 'reputation', 'active_votes', 'savings_sbd_seconds']
exclude_list = [] # ['json_metadata', 'reputation', 'active_votes', 'savings_sbd_seconds']
for k in keys:
if k not in exclude_list:
if isinstance(content[k], dict) and isinstance(json_content[k], list):
......
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