# HG changeset patch # User drewp@bigasterisk.com # Date 1580802389 28800 # Node ID e404420a2343f43d46f6af422fdf64d636688d71 # Parent 94610b5263e482fb1bb089d9e52010ff1622077f don't require first arg on PatchedGraph.serialize Ignore-this: bc695823e03dbd012e03efa4e40b6aca diff -r 94610b5263e4 -r e404420a2343 lib/patchablegraph/patchablegraph.py --- a/lib/patchablegraph/patchablegraph.py Mon Feb 03 23:45:15 2020 -0800 +++ b/lib/patchablegraph/patchablegraph.py Mon Feb 03 23:46:29 2020 -0800 @@ -100,9 +100,9 @@ scales.init(self, '/patchableGraph%s' % next(_graphsInProcess)) _serialize = scales.PmfStat('serialize') - def serialize(self, to, **kw): + def serialize(self, *arg, **kw): with self._serialize.time(): - return self._graph.serialize(to, **kw) + return self._graph.serialize(*arg, **kw) _patch = scales.PmfStat('patch') _len = scales.IntStat('statementCount')