(self, node)
| 179 | |
| 180 | |
| 181 | def _node_color(self, node) : |
| 182 | if u'company' == node.type : |
| 183 | return u'green' |
| 184 | else : |
| 185 | return (u'blue' if u'M'==node.sex else u'red') |
| 186 | |
| 187 | def _other_names(self, node) : |
| 188 | other_names = '' |
no outgoing calls
no test coverage detected