-
-
Notifications
You must be signed in to change notification settings - Fork 31
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
Total Number of Edges #52
Conversation
Codecov Report
@@ Coverage Diff @@
## dev #52 +/- ##
=======================================
Coverage 96.68% 96.68%
=======================================
Files 3 3
Lines 421 421
Branches 68 68
=======================================
Hits 407 407
Misses 10 10
Partials 4 4
Continue to review full report at Codecov.
|
@@ -1306,47 +1306,47 @@ def gexf_maker( | |||
weight_dic = dicts[1] | |||
edge_number = dicts[2] | |||
header = '<?xml version="1.0" encoding="UTF-8"?>\n' | |||
header +='<gexf xmlns="http://www.gexf.net/1.2draft" version="1.2">\n' | |||
header += '<gexf xmlns="http://www.gexf.net/1.2draft" version="1.2">\n' |
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.
Thank you for this I've done it because it seemed more aligned in comparison with it's earlier line.
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.
No problem ;-)
It's just a PEP8 rule
meta = " " * 4 + '<meta lastmodifieddate="{0}">\n'.format(date) | ||
meta += " " * 8 + '<creator>PyRGG</creator>\n' | ||
meta += " " * 8 + '<description>{0}</description>\n'.format(file_name) | ||
meta += " " * 4 + '</meta>\n' |
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.
👍
@@ -1268,7 +1268,7 @@ | |||
>>> input_dic['vertices'] | |||
20 | |||
>>> input_dic['min_edge'] | |||
19 | |||
20 |
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.
what it is this for?
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.
Adding a space to "Min Edge" and "Max Edge" in menu
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.
Oh yeah
Reference Issues/PRs
#48 #49
What does this implement/fix? Explain your changes.
gexf_maker
function spacingAny other comments?