From 2a0912dcc81165c5047a38002bf71c6e51952a70 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micha=C5=82=20Krassowski?= <5832902+krassowski@users.noreply.github.com> Date: Mon, 10 Feb 2025 22:15:45 +0000 Subject: [PATCH] =?UTF-8?q?`template=5Fdir`=20=E2=86=92=20`templates=5Fdir?= =?UTF-8?q?`?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- jupyterlab_server/config.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/jupyterlab_server/config.py b/jupyterlab_server/config.py index d58c8a4..a8e33e1 100644 --- a/jupyterlab_server/config.py +++ b/jupyterlab_server/config.py @@ -314,8 +314,8 @@ class LabConfig(HasTraits): help="Whether getting a relative (False) or absolute (True) path when copying a path.", ).tag(config=True) - @default("template_dir") - def _default_template_dir(self) -> str: + @default("templates_dir") + def _default_templates_dir(self) -> str: return DEFAULT_TEMPLATE_PATH @default("labextensions_url")