Show More
@@ -26,7 +26,6 b' from __future__ import print_function' | |||||
26 | # Imports |
|
26 | # Imports | |
27 | #----------------------------------------------------------------------------- |
|
27 | #----------------------------------------------------------------------------- | |
28 |
|
28 | |||
29 | import datetime |
|
|||
30 | from copy import deepcopy |
|
29 | from copy import deepcopy | |
31 |
|
30 | |||
32 | from .loader import Config, LazyConfigValue |
|
31 | from .loader import Config, LazyConfigValue | |
@@ -55,7 +54,6 b' class Configurable(HasTraits):' | |||||
55 |
|
54 | |||
56 | config = Instance(Config, (), {}) |
|
55 | config = Instance(Config, (), {}) | |
57 | parent = Instance('IPython.config.configurable.Configurable') |
|
56 | parent = Instance('IPython.config.configurable.Configurable') | |
58 | created = None |
|
|||
59 |
|
57 | |||
60 | def __init__(self, **kwargs): |
|
58 | def __init__(self, **kwargs): | |
61 | """Create a configurable given a config config. |
|
59 | """Create a configurable given a config config. | |
@@ -102,7 +100,6 b' class Configurable(HasTraits):' | |||||
102 | # This should go second so individual keyword arguments override |
|
100 | # This should go second so individual keyword arguments override | |
103 | # the values in config. |
|
101 | # the values in config. | |
104 | super(Configurable, self).__init__(**kwargs) |
|
102 | super(Configurable, self).__init__(**kwargs) | |
105 | self.created = datetime.datetime.now() |
|
|||
106 |
|
103 | |||
107 | #------------------------------------------------------------------------- |
|
104 | #------------------------------------------------------------------------- | |
108 | # Static trait notifiations |
|
105 | # Static trait notifiations |
General Comments 0
You need to be logged in to leave comments.
Login now