From 1be4eb6f7270948e5f5dbc983fe2642fae8c9fe0 Mon Sep 17 00:00:00 2001 From: Abhinay Agarwal <57620302+abhinay1112@users.noreply.github.com> Date: Fri, 18 Mar 2022 14:05:48 +0530 Subject: [PATCH] Update ipython.py --- containers/base/config/ipython.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/containers/base/config/ipython.py b/containers/base/config/ipython.py index 4061f80af..83bf796f4 100644 --- a/containers/base/config/ipython.py +++ b/containers/base/config/ipython.py @@ -1,7 +1,7 @@ # Copyright 2015 Google Inc. All rights reserved. # # Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. +# you may not use this, file except in compliance with the License. # You may obtain a copy of the License at # # http://www.apache.org/licenses/LICENSE-2.0 @@ -25,8 +25,12 @@ ] # Startup code. + c.InteractiveShellApp.exec_lines = [] +#read command is the shell's internal tool for taking input from the user i.e. it makes the scripts interactive. # Enable matplotlib renderings to show up inline in the notebook. c.InteractiveShellApp.matplotlib = 'inline' + +