Skip to content

Commit 9c54012

Browse files
committed
minor
1 parent 4b85b6f commit 9c54012

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

run_predict.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ def main():
2020
result_df = predict_multiple(job, raw_df=raw_df, rows_to_predict=1)
2121

2222
raw_df.set_index('date', inplace=True)
23-
result_df.rename(columns={"True": "Current-Truth"}, inplace=True)
23+
result_df.rename(columns={'True': 'Current-Truth'}, inplace=True)
2424

2525
info('Latest chart info:', raw_df.tail(2), '', sep='\n')
2626
info('Prediction for "%s":' % target, result_df, '', sep='\n')

run_visual.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ def main():
2929
y = result_df['True'].min()
3030
plt.axvline(x, color='k', linestyle='--')
3131
plt.annotate('Training stop', xy=(x, y), xytext=(result_df.index.min(), y), color='k',
32-
arrowprops={'arrowstyle': "->", 'connectionstyle': 'arc3', 'color': 'k'})
32+
arrowprops={'arrowstyle': '->', 'connectionstyle': 'arc3', 'color': 'k'})
3333

3434
plt.show()
3535

0 commit comments

Comments
 (0)