Skip to content
Snippets Groups Projects
Commit 03c35ae4 authored by Samuel GAIST's avatar Samuel GAIST
Browse files

[__init__] Pre-commit cleanup

parent 39e23b21
No related branches found
Tags v1.7.9
1 merge request!77Pre commit cleanup
......@@ -34,4 +34,5 @@
###################################################################################
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
......@@ -34,4 +34,5 @@
###################################################################################
# see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path
__path__ = extend_path(__path__, __name__)
......@@ -31,4 +31,4 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
###################################################################################
\ No newline at end of file
###################################################################################
......@@ -34,9 +34,16 @@
###################################################################################
from .database import DBExecutor
from .algorithm import AlgorithmExecutor
from .database import DBExecutor
from .loop import LoopExecutor
from .messagehandlers import MessageHandler
from .messagehandlers import LoopMessageHandler
from .messagehandlers import MessageHandler
__all__ = [
"AlgorithmExecutor",
"DBExecutor",
"LoopExecutor",
"LoopMessageHandler",
"MessageHandler",
]
......@@ -31,4 +31,4 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE #
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# #
###################################################################################
\ No newline at end of file
###################################################################################
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment