MCPcopy Index your code
hub / github.com/rawpython/remi / __init__

Method __init__

editor/editor_widgets.py:409–415  ·  view source on GitHub ↗
(self, title='File dialog', message='Select files and folders',
                 multiple_selection=True, selection_folder='.',
                 allow_file_selection=True, allow_folder_selection=True, baseAppInstance=None)

Source from the content-addressed store, hash-verified

407
408class EditorFileSaveDialog(gui.FileSelectionDialog):
409 def __init__(self, title='File dialog', message='Select files and folders',
410 multiple_selection=True, selection_folder='.',
411 allow_file_selection=True, allow_folder_selection=True, baseAppInstance=None):
412 super(EditorFileSaveDialog, self).__init__(title, message, multiple_selection, selection_folder,
413 allow_file_selection, allow_folder_selection)
414
415 self.baseAppInstance = baseAppInstance
416
417 def show(self, *args):
418 super(EditorFileSaveDialog, self).show(self.baseAppInstance)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected