Commit 8cacd20a authored by Casey Duncan's avatar Casey Duncan

Import Interface directly rather than Base

parent a279aab8
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
from Interface import Base as Interface from Interface import Interface
class ILexicon(Interface): class ILexicon(Interface):
"""Object responsible for converting text to word identifiers.""" """Object responsible for converting text to word identifiers."""
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
from Interface import Base as Interface from Interface import Interface
class IPipelineElement(Interface): class IPipelineElement(Interface):
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
from Interface import Base as Interface from Interface import Interface
class IPipelineElementFactory(Interface): class IPipelineElementFactory(Interface):
"""Class for creating pipeline elements by name""" """Class for creating pipeline elements by name"""
......
...@@ -12,7 +12,7 @@ ...@@ -12,7 +12,7 @@
# #
############################################################################## ##############################################################################
from Interface import Base as Interface from Interface import Interface
class ISplitter(Interface): class ISplitter(Interface):
"""A splitter.""" """A splitter."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment