From f5af001175b2743a4a270ffaeb2ad686b842a63d 2023-01-20 15:02:24 From: Matthias Bussonnier Date: 2023-01-20 15:02:24 Subject: [PATCH] Merge pull request #13895 from Carreau/mt MAINT: Remove usage of traitlets. --- diff --git a/IPython/core/application.py b/IPython/core/application.py index 26c0616..2aa0f10 100644 --- a/IPython/core/application.py +++ b/IPython/core/application.py @@ -123,9 +123,8 @@ class ProfileAwareConfigLoader(PyFileConfigLoader): return super(ProfileAwareConfigLoader, self).load_subconfig(fname, path=path) class BaseIPythonApplication(Application): - - name = u'ipython' - description = Unicode(u'IPython: an enhanced interactive Python shell.') + name = "ipython" + description = "IPython: an enhanced interactive Python shell." version = Unicode(release.version) aliases = base_aliases