From 1193b656a4ba04261c8f874210e4f955495cbd1d Mon Sep 17 00:00:00 2001 From: "WQY\\qiong" Date: Fri, 18 Nov 2022 20:28:31 +0800 Subject: [PATCH] Support to dump change set --- api/operation.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/api/operation.py b/api/operation.py index 39d2f22..b2f6ca1 100644 --- a/api/operation.py +++ b/api/operation.py @@ -38,6 +38,10 @@ class ChangeSet: self.operations += cs.operations return self + def dump(self): + for op in self.operations: + print(op) + def compress(self): return self