I have 3 classes:(I want 4th class to have 3 dicts merged and look like: merged_dicts = {1:1,2:2,3:3,4:4,5:5,6:6,7:7} inside 4th class)
class FIRST(workflow):
first = {1:1, 2:2, 3:3}
class SECOND(workflow):
second= {4:4, 5:5, 6:6}
class THIRD(workflow):
third= {7:7}
class FINAL(FIRST,SECOND,THIRD):
merged_dicts = ?
Also how to do this if first second and third share same variable name(for example my_dict)