From 462382b3e30a006427d71c7e046b6e6164bda0a2 2023-01-16 16:18:47 From: Matthias Bussonnier Date: 2023-01-16 16:18:47 Subject: [PATCH] MAINT: Remove usage of traitlets. Now this is mostly validate at typechecheck time, instead of runtime. We don't use any validation logic so I'm unsure it is really necessary. --- 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