Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

result optimization #122

Closed
wants to merge 2 commits into from
Closed

Conversation

xiaoyue2019
Copy link

Issues75 has been completed, but the separator of the returned result is ,. when only helloword is saved, the output is helloword ,. It's very inhumane.

@ghost
Copy link

ghost commented Jul 23, 2020

Warnings are found on analyzing the commit a800068.

1 warning:

We recommend to address them as possible, for example, update outdated dependencies, fix the tool's configuration, configure sider.yml, turn off unused tools, and so on.

If you are struggling with these errors or warnings, feel free to ask us via chat. 💬

@@ -283,9 +283,9 @@ def print_tx_result(outputresults):
"""
for result in outputresults:
if type(result) is bytes:
print("{}, ".format(bytesToHex(result)))
print("{}".format(bytesToHex(result)),end='\n')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Flake8] missing whitespace after ',' (view)

Rule
E231

You can close this issue if no need to fix it. Learn more.

continue
print("{}, ".format(result))
print("{}".format(result),end='\n')
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

[Flake8] missing whitespace after ',' (view)

Rule
E231

You can close this issue if no need to fix it. Learn more.

@coderkentzhang
Copy link
Contributor

在目前的分支已经格式化,感谢提交

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants