5 lines
86 B
Python
5 lines
86 B
Python
def load_abi(file):
|
|
with open(file) as fp:
|
|
abi = fp.read()
|
|
return abi
|