You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

12 lines
345 B

  1. from gooey.gui.components.widgets.core.text_input import PasswordInput
  2. from gooey.gui.components.widgets.textfield import TextField
  3. __ALL__ = ('PasswordField',)
  4. class PasswordField(TextField):
  5. widget_class = PasswordInput
  6. def __init__(self, *args, **kwargs):
  7. super(PasswordField, self).__init__(*args, **kwargs)