Skip to content

Commit

Permalink
added pylint ignores, fixed missing import
Browse files Browse the repository at this point in the history
  • Loading branch information
e0d committed Jun 12, 2013
1 parent d715c61 commit 273df4e
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions lms/envs/aws_migrate.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,14 @@
LMS with enough privileges to modify the database schema.
"""

# We intentionally define lots of variables that aren't used, and
# want to import all variables from base settings files
# pylint: disable=W0401, W0614

# Import everything from .aws so that our settings are based on those.
from .aws import *
import os
from django.core.exceptions import ImproperlyConfigured

USER = os.environ.get('DB_MIGRATION_USER', 'root')
PASSWORD = os.environ.get('DB_MIGRATION_PASS', None)
Expand Down

0 comments on commit 273df4e

Please sign in to comment.