Skip to content
Snippets Groups Projects
Commit 5a5d425e authored by Ned Batchelder's avatar Ned Batchelder
Browse files

Files that may not exist need F0401 suppressed during import.

parent 45815e2d
No related merge requests found
......@@ -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
......@@ -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
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment