Skip to content

Commit 52c8d7a

Browse files
committed
Have debug log mixin inherit Configurable
1 parent a75b849 commit 52c8d7a

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

jupyterlab/debuglog.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -13,9 +13,10 @@
1313
import tempfile
1414
import traceback
1515

16-
from traitlets import HasTraits, Unicode, default
16+
from traitlets import Unicode, default
17+
from traitlets.config import Configurable
1718

18-
class DebugLogFileMixin(HasTraits):
19+
class DebugLogFileMixin(Configurable):
1920
debug_log_path = Unicode('', config=True, help='Path to use for the debug log file')
2021

2122
@contextlib.contextmanager

0 commit comments

Comments
 (0)