From f4e5b8f154880d7060f69790b23feb0cb086b64d Mon Sep 17 00:00:00 2001 From: Samuel Gaist <samuel.gaist@idiap.ch> Date: Thu, 14 Mar 2019 17:48:37 +0100 Subject: [PATCH] [execution][base] Code cleanup --- beat/core/execution/base.py | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/beat/core/execution/base.py b/beat/core/execution/base.py index 23f09a3c..5d7d5c04 100644 --- a/beat/core/execution/base.py +++ b/beat/core/execution/base.py @@ -44,14 +44,9 @@ Execution utilities import os -import sys import glob import collections - import logging - -logger = logging.getLogger(__name__) - import simplejson from .. import schema @@ -62,6 +57,9 @@ from .. import stats from beat.backend.python.helpers import convert_experiment_configuration_to_container +logger = logging.getLogger(__name__) + + class BaseExecutor(object): """Executors runs the code given an execution block information -- GitLab