We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent db44b49 commit a995e53Copy full SHA for a995e53
wikigraphviz.py
@@ -128,7 +128,7 @@ def edge(n, h):
128
penwidth=round(size / 2, 2),
129
arrowsize=round(size / 4, 2),
130
color=str(round(h, 2)) + ' 1 0.7',
131
- labelfontsize=int(size),
+ labelfontsize=int(3 * size),
132
labelfontcolor=str(round(h, 2)) + ' 1 0.5')
133
return e
134
@@ -156,7 +156,7 @@ def edge(n, h):
156
self.fw[e.get_source()].append(e.get_destination())
157
158
def run(self) -> None:
159
- """Run main function of CategoryGraphBot."""
+ """Main function of CategoryGraphBot."""
160
self.scan_level(self.cat, int(self.args.depth))
161
# reduce too big graph
162
if self.counter > 1000:
0 commit comments