-
Notifications
You must be signed in to change notification settings - Fork 3
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
align #392
Conversation
fix seednodes table
add seednode summary script
zero start
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Worth considering. View full project report here.
print(f"unscored_resp: {len(unscored_resp)}") | ||
print(f"unofficial_resp: {len(unofficial_resp)}") | ||
print(f"------------------------------------") | ||
logger.info(f"------------------------------------") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logger.info(f"------------------------------------") | |
logger.info("------------------------------------") |
f-string is unnecessary here. This can just be a string. More.
logger.info(f"scored_resp: {len(scored_resp)}") | ||
logger.info(f"unscored_resp: {len(unscored_resp)}") | ||
logger.info(f"unofficial_resp: {len(unofficial_resp)}") | ||
logger.info(f"------------------------------------") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
logger.info(f"------------------------------------") | |
logger.info("------------------------------------") |
As above, f-string is unnecessary here.
No description provided.