Ignore bandit error

This commit is contained in:
Curtis Castrapel 2019-05-09 15:00:09 -07:00
parent ed18df22db
commit 3f10b43254
1 changed files with 1 additions and 1 deletions

View File

@ -68,7 +68,7 @@ copyright = u'2018, Netflix Inc.'
base_dir = os.path.join(os.path.dirname(__file__), os.pardir)
about = {}
with open(os.path.join(base_dir, "lemur", "__about__.py")) as f:
exec(f.read(), about)
exec(f.read(), about) # nosec
version = release = about["__version__"]