Skip to content

Commit b0b89b8

Browse files
committed
Start print statement with new line
1 parent 07cc848 commit b0b89b8

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

exiobase.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -98,7 +98,7 @@ def fill_unit(df_source, df_target):
9898

9999

100100
def parse():
101-
print('Begin parsing EXIOBASE')
101+
print('\nBegin parsing EXIOBASE')
102102
dict_eb_parse_meta = get_dict_eb_parse_meta()
103103
dict_eb_raw = {}
104104

@@ -143,12 +143,12 @@ def parse():
143143
dict_eb_raw['cQm'] = df_cQm
144144
dict_eb_raw['cQr'] = df_cQr
145145

146-
print('Done parsing EXIOBASE')
146+
print('\nDone parsing EXIOBASE')
147147
return dict_eb_raw
148148

149149

150150
def process(dict_eb_raw):
151-
print('Begin processing EXIOBASE')
151+
print('\nBegin processing EXIOBASE')
152152
dict_eb_proc = {}
153153

154154
# Construct Total Production Vector x from sum of Z and Y.
@@ -193,7 +193,7 @@ def process(dict_eb_raw):
193193
dict_eb_proc['tHm'] = dict_eb_raw['tHm']
194194
dict_eb_proc['tHr'] = dict_eb_raw['tHr']
195195

196-
print('Done processing EXIOBASE')
196+
print('\nDone processing EXIOBASE')
197197
return dict_eb_proc
198198

199199

0 commit comments

Comments
 (0)