Skip to content

Commit

Permalink
Apply automated style fixes using 'python etstool.py style fix'
Browse files Browse the repository at this point in the history
  • Loading branch information
mdickinson committed Mar 23, 2023
1 parent 14e400b commit dac6c36
Show file tree
Hide file tree
Showing 185 changed files with 1,276 additions and 1,410 deletions.
9 changes: 5 additions & 4 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@
.. |Message| replace:: :github-demo:`Message <MOTD/acme/motd/message.py>`
.. |messages.py| replace:: :github-demo:`message.py <MOTD/acme/motd/software_quotes/messages.py>`
.. |Message of the Day| replace:: :github-demo:`Message of the Day <MOTD>`
""" # noqa: E501
""" # noqa: E501

# Options for HTML output
# -----------------------
Expand Down Expand Up @@ -234,7 +234,8 @@
# -- Options for extlinks extension -------------------------------------------

extlinks = {
'github-demo': (
f'https://github.com/enthought/envisage/tree/{version}/envisage/examples/demo/%s', # noqa: E501
'')
"github-demo": (
f"https://github.com/enthought/envisage/tree/{version}/envisage/examples/demo/%s", # noqa: E501
"",
)
}
27 changes: 13 additions & 14 deletions envisage/api.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,18 @@
"""

from .application import Application
from .core_plugin import CorePlugin
from .egg_plugin_manager import EggPluginManager
from .extension_point import ExtensionPoint
from .extension_point_binding import (
bind_extension_point,
ExtensionPointBinding,
unbind_extension_point,
)
from .extension_point_changed_event import ExtensionPointChangedEvent
from .extension_provider import ExtensionProvider
from .extension_registry import ExtensionRegistry
from .i_application import IApplication
from .i_extension_point import IExtensionPoint
from .i_extension_point_user import IExtensionPointUser
Expand All @@ -76,28 +88,15 @@
from .i_plugin_activator import IPluginActivator
from .i_plugin_manager import IPluginManager
from .i_service_registry import IServiceRegistry

from .application import Application
from .core_plugin import CorePlugin
from .egg_plugin_manager import EggPluginManager
from .extension_registry import ExtensionRegistry
from .extension_point import ExtensionPoint
from .extension_point_binding import (
ExtensionPointBinding,
bind_extension_point,
unbind_extension_point,
)
from .extension_provider import ExtensionProvider
from .extension_point_changed_event import ExtensionPointChangedEvent
from .ids import (
BINDINGS,
COMMANDS,
PREFERENCES,
PREFERENCES_CATEGORIES,
PREFERENCES_PANES,
SERVICE_OFFERS,
TASK_EXTENSIONS,
TASKS,
TASK_EXTENSIONS
)
from .import_manager import ImportManager
from .plugin import Plugin
Expand Down
Loading

0 comments on commit dac6c36

Please sign in to comment.