def instance(**kwargs): ''' Individual test framework''' import_pymt_window() from pymt import MTTextArea from pymt import css_add_sheet, css_reload try: return MTTextArea(**kwargs) except: return None
def instance(): import_pymt_window() from pymt import MTTextInput from pymt import css_add_sheet, css_reload try: t = MTTextInput() return True except: return False