mirror of
https://gitlab.gnome.org/jwestman/blueprint-compiler.git
synced 2025-05-05 16:09:07 -04:00
Run isort and black
This commit is contained in:
parent
6b2c6d2991
commit
87a8ae96d8
42 changed files with 109 additions and 111 deletions
|
@ -1,12 +1,12 @@
|
|||
from .gtk_list_item_factory import ExtListItemFactory
|
||||
from .adw_breakpoint import (
|
||||
AdwBreakpointCondition,
|
||||
AdwBreakpointSetter,
|
||||
AdwBreakpointSetters,
|
||||
)
|
||||
from .adw_message_dialog import ExtAdwMessageDialog
|
||||
from .attributes import BaseAttribute
|
||||
from .adw_breakpoint import (
|
||||
AdwBreakpointSetters,
|
||||
AdwBreakpointSetter,
|
||||
AdwBreakpointCondition,
|
||||
)
|
||||
from .binding import Binding
|
||||
from .common import *
|
||||
from .contexts import ScopeCtx, ValueTypeCtx
|
||||
from .expression import (
|
||||
CastExpr,
|
||||
|
@ -23,23 +23,24 @@ from .gobject_signal import Signal
|
|||
from .gtk_a11y import ExtAccessibility
|
||||
from .gtk_combo_box_text import ExtComboBoxItems
|
||||
from .gtk_file_filter import (
|
||||
Filters,
|
||||
ext_file_filter_mime_types,
|
||||
ext_file_filter_patterns,
|
||||
ext_file_filter_suffixes,
|
||||
Filters,
|
||||
)
|
||||
from .gtk_layout import ExtLayout
|
||||
from .gtk_menu import menu, Menu, MenuAttribute
|
||||
from .gtk_list_item_factory import ExtListItemFactory
|
||||
from .gtk_menu import Menu, MenuAttribute, menu
|
||||
from .gtk_scale import ExtScaleMarks
|
||||
from .gtk_size_group import ExtSizeGroupWidgets
|
||||
from .gtk_string_list import ExtStringListStrings
|
||||
from .gtk_styles import ExtStyles
|
||||
from .gtkbuilder_child import Child, ChildType, ChildInternal, ChildExtension
|
||||
from .gtkbuilder_child import Child, ChildExtension, ChildInternal, ChildType
|
||||
from .gtkbuilder_template import Template
|
||||
from .imports import GtkDirective, Import
|
||||
from .property_binding import PropertyBinding
|
||||
from .ui import UI
|
||||
from .types import ClassName
|
||||
from .ui import UI
|
||||
from .values import (
|
||||
Flag,
|
||||
Flags,
|
||||
|
@ -54,8 +55,6 @@ from .values import (
|
|||
Value,
|
||||
)
|
||||
|
||||
from .common import *
|
||||
|
||||
OBJECT_CONTENT_HOOKS.children = [
|
||||
Signal,
|
||||
Property,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue