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

[execution] Pre-commit cleanup

parent 03c35ae4
Branches
Tags
1 merge request!77Pre commit cleanup
...@@ -44,15 +44,15 @@ A class that can setup and execute algorithm blocks on the backend ...@@ -44,15 +44,15 @@ A class that can setup and execute algorithm blocks on the backend
import logging import logging
import os import os
import simplejson import simplejson
import zmq import zmq
from .. import stats
from ..algorithm import Algorithm from ..algorithm import Algorithm
from ..helpers import AccessMode
from ..helpers import create_inputs_from_configuration from ..helpers import create_inputs_from_configuration
from ..helpers import create_outputs_from_configuration from ..helpers import create_outputs_from_configuration
from ..helpers import AccessMode
from .. import stats
from .loop import LoopChannel from .loop import LoopChannel
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
...@@ -43,6 +43,7 @@ Execution utilities ...@@ -43,6 +43,7 @@ Execution utilities
""" """
import os import os
import simplejson import simplejson
from ..database import Database from ..database import Database
......
...@@ -42,21 +42,20 @@ executor ...@@ -42,21 +42,20 @@ executor
A class that can setup and execute loop algorithm blocks on the backend A class that can setup and execute loop algorithm blocks on the backend
""" """
import json
import logging import logging
import os import os
import json
import zmq import zmq
from ..algorithm import Algorithm from ..algorithm import Algorithm
from ..dataformat import DataFormat from ..dataformat import DataFormat
from ..exceptions import RemoteException
from ..helpers import AccessMode
from ..helpers import create_inputs_from_configuration from ..helpers import create_inputs_from_configuration
from ..helpers import create_outputs_from_configuration from ..helpers import create_outputs_from_configuration
from ..helpers import AccessMode
from ..exceptions import RemoteException
from .helpers import make_data_format from .helpers import make_data_format
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
...@@ -44,19 +44,16 @@ communication. ...@@ -44,19 +44,16 @@ communication.
""" """
import logging import logging
import threading
import zmq
import simplejson import simplejson
import threading import zmq
from .. import baseformat
from ..dataformat import DataFormat from ..dataformat import DataFormat
from ..exceptions import RemoteException from ..exceptions import RemoteException
from .. import baseformat
from .helpers import make_data_format from .helpers import make_data_format
logger = logging.getLogger(__name__) logger = logging.getLogger(__name__)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment