Merge "TrivialFix: Remove logging import unused"

This commit is contained in:
Jenkins 2016-09-25 11:28:37 +00:00 committed by Gerrit Code Review
commit 01a7ed187f
3 changed files with 0 additions and 12 deletions

View File

@ -11,8 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from django.conf import settings
from saharaclient.api.base import APIException
from saharaclient.api.base import Page
@ -26,8 +24,6 @@ from openstack_dashboard.api import base
from sahara_dashboard import utils as u
LOG = logging.getLogger(__name__)
# "type" of Sahara service registered in keystone
SAHARA_SERVICE = 'data-processing'
# Sahara service_type registered in Juno

View File

@ -11,8 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from django.utils.translation import ugettext_lazy as _
from saharaclient.api import base as api_base
@ -25,8 +23,6 @@ from sahara_dashboard.api import sahara as saharaclient
import sahara_dashboard.content.data_processing. \
utils.workflow_helpers as whelpers
LOG = logging.getLogger(__name__)
class SelectSharesAction(workflows.Action):
def __init__(self, request, *args, **kwargs):

View File

@ -11,8 +11,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
import logging
from django.utils.translation import ugettext_lazy as _
from horizon import exceptions
@ -22,8 +20,6 @@ from sahara_dashboard.api import sahara as saharaclient
from sahara_dashboard.content.data_processing.clusters.image_registry \
import tables as image_registry_tables
LOG = logging.getLogger(__name__)
class ImageRegistryTab(tabs.TableTab):
table_classes = (image_registry_tables.ImageRegistryTable, )