You've already forked akaunting-py
Moved helper functions
This commit is contained in:
9
akauntingpy/helpers.py
Normal file
9
akauntingpy/helpers.py
Normal 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
|
||||
Reference in New Issue
Block a user