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

Method __init__

editor/editor_widgets.py:395–402  ·  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

393
394class EditorFileSelectionDialog(gui.FileSelectionDialog):
395 def __init__(self, title='File dialog', message='Select files and folders',
396 multiple_selection=True, selection_folder='.', allow_file_selection=True,
397 allow_folder_selection=True, baseAppInstance=None):
398 super(EditorFileSelectionDialog, self).__init__(title,
399 message, multiple_selection, selection_folder,
400 allow_file_selection, allow_folder_selection)
401
402 self.baseAppInstance = baseAppInstance
403
404 def show(self, *args):
405 super(EditorFileSelectionDialog, self).show(self.baseAppInstance)

Callers

nothing calls this directly

Calls 1

__init__Method · 0.45

Tested by

no test coverage detected