You've already forked akaunting-py
9 lines
191 B
Python
9 lines
191 B
Python
|
|
def MergeDict(dict1, dict2):
|
|
dict2.update(dict1)
|
|
return dict2
|
|
|
|
def RemoveFromString(items, string):
|
|
for item in items:
|
|
string = string.replace(item, '')
|
|
return string |