Files that may not exist need F0401 suppressed during import.

This commit is contained in:
Ned Batchelder
2013-06-21 14:41:16 -04:00
parent 45815e2d03
commit 5a5d425eb3
2 changed files with 2 additions and 2 deletions

View File

@@ -181,6 +181,6 @@ if SEGMENT_IO_KEY:
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
from .private import *
from .private import * # pylint: disable=F0401
except ImportError:
pass

View File

@@ -258,6 +258,6 @@ if SEGMENT_IO_LMS_KEY:
#####################################################################
# Lastly, see if the developer has any local overrides.
try:
from .private import *
from .private import * # pylint: disable=F0401
except ImportError:
pass