From d58607ea2d05c3b0fefe79b5894866d26fc15118 Mon Sep 17 00:00:00 2001 From: Bernard Szabo Date: Mon, 22 Aug 2022 13:19:53 -0400 Subject: [PATCH] feat: TNL-10051 reorder import statements import logging must come near top --- openedx/core/lib/blockstore_api/methods.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/openedx/core/lib/blockstore_api/methods.py b/openedx/core/lib/blockstore_api/methods.py index f48efd5830..1f930e5f32 100644 --- a/openedx/core/lib/blockstore_api/methods.py +++ b/openedx/core/lib/blockstore_api/methods.py @@ -3,6 +3,7 @@ API Client methods for working with Blockstore bundles and drafts """ import base64 +import logging from functools import wraps from urllib.parse import urlencode from uuid import UUID @@ -33,7 +34,6 @@ from blockstore.apps.api.exceptions import ( import blockstore.apps.api.methods as blockstore_api_methods from .config import use_blockstore_app -import logging log = logging.getLogger(__name__)