Moved helper functions

This commit is contained in:
2022-05-16 11:41:49 +12:00
parent 252809af8b
commit f9d99453f7
2 changed files with 18 additions and 12 deletions

9
akauntingpy/helpers.py Normal file
View File

@@ -0,0 +1,9 @@
def MergeDict(dict1, dict2):
dict2.update(dict1)
return dict2
def RemoveFromString(items, string):
for item in items:
string = string.replace(item, '')
return string