Create a new nx.DiGraph for underlying storage with appropriate arguments
(self)
| 42 | self._digraph = self._new_graph() |
| 43 | |
| 44 | def _new_graph(self): |
| 45 | """Create a new nx.DiGraph for underlying storage |
| 46 | with appropriate arguments""" |
| 47 | return nx.DiGraph(commits={}) |
| 48 | |
| 49 | # Read-only access |
| 50 | def nodes(self, data=False): |