A concept in the sematic network.
(self, *args, **kwargs)
| 27 | class Concept(Node): |
| 28 | |
| 29 | def __init__(self, *args, **kwargs): |
| 30 | """ A concept in the sematic network. |
| 31 | """ |
| 32 | Node.__init__(self, *args, **kwargs) |
| 33 | self._properties = None |
| 34 | |
| 35 | @property |
| 36 | def halo(self, depth=2): |