Skip to content

Commit

Permalink
Small typing fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cpsievert committed Nov 7, 2023
1 parent 77e3177 commit 9b2dbd2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions shinywidgets/_comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@ class ShinyComm:
# we don't have a kernel here, so give it a meaningless value.
kernel = "Shiny"

_msg_callback: MsgCallback
_close_callback: MsgCallback
_msg_callback: Optional[MsgCallback]
_close_callback: Optional[MsgCallback]
_closed: bool = False
_closed_data: Dict[str, object] = {}

Expand Down

0 comments on commit 9b2dbd2

Please sign in to comment.