refactor: Removed unused imports

Removed unused imports from lms/envs
This commit is contained in:
Jawayria
2021-02-17 14:03:59 +05:00
parent d69b8f3941
commit 42e7576500
3 changed files with 0 additions and 7 deletions

View File

@@ -19,8 +19,6 @@ invoked each time that changes have been made.
"""
import os # lint-amnesty, pylint: disable=unused-import
########################## Devstack settings ###################################
from .devstack import * # pylint: disable=wildcard-import

View File

@@ -12,8 +12,6 @@ In two separate processes on devstack:
"""
import os # lint-amnesty, pylint: disable=unused-import
# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=wildcard-import, unused-wildcard-import

View File

@@ -14,10 +14,7 @@ sessions. Assumes structure:
import logging
import os
from collections import OrderedDict
from random import choice # lint-amnesty, pylint: disable=unused-import
from string import digits, ascii_letters, punctuation # lint-amnesty, pylint: disable=unused-import
from uuid import uuid4
import openid.oidutil