Skip to content

Commit 3812a23

Browse files
committed
add help documentation to extnesionapp static_url_prefix trait
1 parent e909776 commit 3812a23

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

jupyter_server/extension/application.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,9 @@ def _default_log_format(self):
188188
"""override default log format to include date & time"""
189189
return u"%(color)s[%(levelname)1.1s %(asctime)s.%(msecs).03d %(name)s]%(end_color)s %(message)s"
190190

191-
static_url_prefix = Unicode().tag(config=True)
191+
static_url_prefix = Unicode(
192+
help="""Url where the static assets for the extension are served."""
193+
).tag(config=True)
192194

193195
@default('static_url_prefix')
194196
def _default_static_url_prefix(self):

0 commit comments

Comments
 (0)