Commit 52ddd2f3 authored by BO ZHANG's avatar BO ZHANG 🏀
Browse files

tweak

parent 3171e19f
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -165,7 +165,7 @@ class BaseDAG:
    @staticmethod
    def force_string(d: dict):
        for k, v in d.items():
            d.__setattr__(k, str(v))
            d[k] = str(v)
        return d

    def gen_dag_run(self, **kwargs) -> dict: