##// END OF EJS Templates
Use more conventional *args naming over *parg
Thomas Kluyver -
Show More
@@ -59,8 +59,8 b' class Text(_String):'
59 """Single line textbox widget."""
59 """Single line textbox widget."""
60 _view_name = Unicode('TextView', sync=True)
60 _view_name = Unicode('TextView', sync=True)
61
61
62 def __init__(self, *parg, **kwargs):
62 def __init__(self, *args, **kwargs):
63 super(Text, self).__init__(*parg, **kwargs)
63 super(Text, self).__init__(*args, **kwargs)
64 self._submission_callbacks = CallbackDispatcher()
64 self._submission_callbacks = CallbackDispatcher()
65 self.on_msg(self._handle_string_msg)
65 self.on_msg(self._handle_string_msg)
66
66
General Comments 0
You need to be logged in to leave comments. Login now