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

tweak

parent 3171e19f
...@@ -165,7 +165,7 @@ class BaseDAG: ...@@ -165,7 +165,7 @@ class BaseDAG:
@staticmethod @staticmethod
def force_string(d: dict): def force_string(d: dict):
for k, v in d.items(): for k, v in d.items():
d.__setattr__(k, str(v)) d[k] = str(v)
return d return d
def gen_dag_run(self, **kwargs) -> dict: def gen_dag_run(self, **kwargs) -> dict:
......
Supports Markdown
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment