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

[__init__] Pre-commit cleanup

parent 39e23b21
Branches
Tags
1 merge request!77Pre commit cleanup
...@@ -34,4 +34,5 @@ ...@@ -34,4 +34,5 @@
################################################################################### ###################################################################################
# see https://docs.python.org/3/library/pkgutil.html # see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path from pkgutil import extend_path
__path__ = extend_path(__path__, __name__) __path__ = extend_path(__path__, __name__)
...@@ -34,4 +34,5 @@ ...@@ -34,4 +34,5 @@
################################################################################### ###################################################################################
# see https://docs.python.org/3/library/pkgutil.html # see https://docs.python.org/3/library/pkgutil.html
from pkgutil import extend_path from pkgutil import extend_path
__path__ = extend_path(__path__, __name__) __path__ = extend_path(__path__, __name__)
...@@ -31,4 +31,4 @@ ...@@ -31,4 +31,4 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # # 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. # # OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. #
# # # #
################################################################################### ###################################################################################
\ No newline at end of file
...@@ -34,9 +34,16 @@ ...@@ -34,9 +34,16 @@
################################################################################### ###################################################################################
from .database import DBExecutor
from .algorithm import AlgorithmExecutor from .algorithm import AlgorithmExecutor
from .database import DBExecutor
from .loop import LoopExecutor from .loop import LoopExecutor
from .messagehandlers import MessageHandler
from .messagehandlers import LoopMessageHandler from .messagehandlers import LoopMessageHandler
from .messagehandlers import MessageHandler
__all__ = [
"AlgorithmExecutor",
"DBExecutor",
"LoopExecutor",
"LoopMessageHandler",
"MessageHandler",
]
...@@ -31,4 +31,4 @@ ...@@ -31,4 +31,4 @@
# OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE # # 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. # # 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.
Please register or to comment