Skip to content

Commit

Permalink
[pre-commit.ci] auto fixes from pre-commit.com hooks
Browse files Browse the repository at this point in the history
for more information, see https://pre-commit.ci
  • Loading branch information
pre-commit-ci[bot] authored and martinRenou committed Nov 18, 2022
1 parent 0db51bf commit b11a831
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ipykernel/comm/comm.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ class Comm(BaseComm):
def __init__(self, *args, **kwargs):
self.kernel = None

super(Comm, self).__init__(*args, **kwargs)
super().__init__(*args, **kwargs)

def publish_msg(self, msg_type, data=None, metadata=None, buffers=None, **keys):
"""Helper for sending a comm message on IOPub"""
Expand Down

0 comments on commit b11a831

Please sign in to comment.