Skip to content

Commit

Permalink
Improved pn.state docstrings
Browse files Browse the repository at this point in the history
  • Loading branch information
philippjfr committed Mar 1, 2019
1 parent 439c39a commit ae29782
Showing 1 changed file with 7 additions and 3 deletions.
10 changes: 7 additions & 3 deletions panel/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,10 +28,14 @@


class state(_param.Parameterized):
"""
Holds global state associated with running apps, allowing running
apps to indicate their state to a user.
"""

curdoc = _param.ClassSelector(class_=_Document)

comm = _param.ClassSelector(class_=_Comm)
curdoc = _param.ClassSelector(class_=_Document, doc="""
The bokeh Document for which a server event is currently being
processed.""")


class extension(_pyviz_extension):
Expand Down

0 comments on commit ae29782

Please sign in to comment.