7 lines
192 B
Python
7 lines
192 B
Python
"""Dialoge für den FileBrowser."""
|
|
|
|
from .base import RenameDialog, MoveDialog, DeleteDialog, SettingsDialog
|
|
|
|
__all__ = [
|
|
'RenameDialog', 'MoveDialog', 'DeleteDialog', 'SettingsDialog'
|
|
]
|