diff options
author | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-14 14:37:52 -0500 |
---|---|---|
committer | Jesús Eduardo <heckyel@hyperbola.info> | 2018-01-14 14:37:52 -0500 |
commit | 70145af8e0935255279a08d9f736e5fb9cf4e40a (patch) | |
tree | cb5790140c0f1488eedc45889d7704101c210f3b /lvc/widgets/osx/widgetset.py | |
parent | ff9d1d474e0b34d00257b13f1038b865649837dc (diff) | |
download | librevideoconverter-70145af8e0935255279a08d9f736e5fb9cf4e40a.tar.lz librevideoconverter-70145af8e0935255279a08d9f736e5fb9cf4e40a.tar.xz librevideoconverter-70145af8e0935255279a08d9f736e5fb9cf4e40a.zip |
pep8 en lvc/widgets/osx/widgetset.py
Diffstat (limited to 'lvc/widgets/osx/widgetset.py')
-rw-r--r-- | lvc/widgets/osx/widgetset.py | 30 |
1 files changed, 18 insertions, 12 deletions
diff --git a/lvc/widgets/osx/widgetset.py b/lvc/widgets/osx/widgetset.py index 1203566..3ab09c5 100644 --- a/lvc/widgets/osx/widgetset.py +++ b/lvc/widgets/osx/widgetset.py @@ -34,25 +34,31 @@ just imports the widgets from their actual locations. from .const import * from .control import (TextEntry, NumberEntry, - SecureTextEntry, MultilineTextEntry) -from .control import Checkbox, Button, OptionMenu, RadioButtonGroup, RadioButton + SecureTextEntry, MultilineTextEntry) +from .control import Checkbox, Button, OptionMenu, RadioButtonGroup, \ + RadioButton from .customcontrol import (CustomButton, - ContinuousCustomButton, CustomSlider, DragableCustomButton) + ContinuousCustomButton, CustomSlider, + DragableCustomButton) from .contextmenu import ContextMenu from .drawing import DrawingContext, ImageSurface, Gradient from .drawingwidgets import DrawingArea, Background from .rect import Rect -from .layout import VBox, HBox, Alignment, Table, Scroller, Expander, TabContainer, DetachedWindowHolder +from .layout import VBox, HBox, Alignment, Table, Scroller, Expander, \ + TabContainer, DetachedWindowHolder from .window import Window, MainWindow, Dialog, FileSaveDialog, FileOpenDialog -from .window import DirectorySelectDialog, AboutDialog, AlertDialog, PreferencesWindow, DonateWindow, DialogWindow, get_first_time_dialog_coordinates +from .window import DirectorySelectDialog, AboutDialog, AlertDialog, \ + PreferencesWindow, DonateWindow, DialogWindow, \ + get_first_time_dialog_coordinates from .simple import (Image, ImageDisplay, Label, - SolidBackground, ClickableImageButton, AnimatedImageDisplay, - ProgressBar, HLine) + SolidBackground, ClickableImageButton, + AnimatedImageDisplay, ProgressBar, HLine) from .tableview import (TableView, TableColumn, - CellRenderer, CustomCellRenderer, ImageCellRenderer, - CheckboxCellRenderer, - CUSTOM_HEADER_HEIGHT) + CellRenderer, CustomCellRenderer, ImageCellRenderer, + CheckboxCellRenderer, + CUSTOM_HEADER_HEIGHT) from .tablemodel import (TableModel, - TreeTableModel) -from .osxmenus import (MenuBar, Menu, Separator, MenuItem, RadioMenuItem, CheckMenuItem) + TreeTableModel) +from .osxmenus import (MenuBar, Menu, Separator, MenuItem, + RadioMenuItem, CheckMenuItem) from .base import Widget |