Skip to content

Commit

Permalink
Linting fixes while reviewing cloud_storage
Browse files Browse the repository at this point in the history
  • Loading branch information
dannon committed Mar 30, 2018
1 parent f56e4ab commit 8ceaae7
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 5 deletions.
7 changes: 4 additions & 3 deletions lib/galaxy/managers/cloud_storage.py
Expand Up @@ -2,13 +2,14 @@
Manager and serializer for cloud-based storages.
"""

import string
import random
import logging
import os
import random
import string
from cgi import FieldStorage

from galaxy.managers import sharable
from galaxy.util import Params
from cgi import FieldStorage

try:
from cloudbridge.cloud.factory import CloudProviderFactory, ProviderList
Expand Down
4 changes: 2 additions & 2 deletions lib/galaxy/webapps/galaxy/api/cloud_storage.py
Expand Up @@ -5,8 +5,8 @@
import logging

from galaxy import web
from galaxy.web.base.controller import BaseAPIController
from galaxy.managers import cloud_storage
from galaxy.web.base.controller import BaseAPIController

log = logging.getLogger(__name__)

Expand Down Expand Up @@ -96,4 +96,4 @@ def upload(self, trans, payload, **kwargs):
:param kwargs:
:return:
"""
pass
pass

0 comments on commit 8ceaae7

Please sign in to comment.