mirror of
https://github.com/jupyter/notebook.git
synced 2025-03-19 13:20:36 +08:00
Use more conventional *args naming over *parg
This commit is contained in:
parent
cbb685b314
commit
9c0fb7bf68
@ -59,8 +59,8 @@ class Text(_String):
|
||||
"""Single line textbox widget."""
|
||||
_view_name = Unicode('TextView', sync=True)
|
||||
|
||||
def __init__(self, *parg, **kwargs):
|
||||
super(Text, self).__init__(*parg, **kwargs)
|
||||
def __init__(self, *args, **kwargs):
|
||||
super(Text, self).__init__(*args, **kwargs)
|
||||
self._submission_callbacks = CallbackDispatcher()
|
||||
self.on_msg(self._handle_string_msg)
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user