Skip to content

Commit

Permalink
Actually fixing mypy
Browse files Browse the repository at this point in the history
  • Loading branch information
itepifanio committed Mar 3, 2024
1 parent 7fe8141 commit 0a82b45
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion ipywatch/ipywatch.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def _patched_send(comm, data=None, metadata=None, buffers=None):

_original_send(comm, data, metadata, buffers)

BaseComm.send = _patched_send
BaseComm.send = _patched_send # type: ignore

# %% ../nbs/03_ipywatch.ipynb 5
class Ipywatch(HBox):
Expand Down
2 changes: 1 addition & 1 deletion nbs/00_comm.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
"\n",
" _original_send(self, data, metadata, buffers)\n",
"\n",
"BaseComm.send = _patched_send"
"BaseComm.send = _patched_send # type: ignore"
]
},
{
Expand Down
2 changes: 1 addition & 1 deletion nbs/03_ipywatch.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@
"\n",
" _original_send(comm, data, metadata, buffers)\n",
"\n",
" BaseComm.send = _patched_send"
" BaseComm.send = _patched_send # type: ignore"
]
},
{
Expand Down

0 comments on commit 0a82b45

Please sign in to comment.