ci: add missing noqa:F401

This commit is contained in:
morris 2020-05-21 10:42:59 +08:00
parent 0ad6e1b977
commit d4c88e9e45
2 changed files with 4 additions and 4 deletions

View file

@ -7,12 +7,12 @@
# Importing conf_common adds all the non-language-specific
# parts to this conf module
try:
from conf_common import * # noqa: F403
from conf_common import * # noqa: F403,F401
except ImportError:
import sys
import os
sys.path.insert(0, os.path.abspath('..'))
from conf_common import * # noqa: F403
from conf_common import * # noqa: F403,F401
# General information about the project.
project = u'ESP-IDF Programming Guide'

View file

@ -7,12 +7,12 @@
# Importing conf_common adds all the non-language-specific
# parts to this conf module
try:
from conf_common import * # noqa: F403
from conf_common import * # noqa: F403,F401
except ImportError:
import sys
import os
sys.path.insert(0, os.path.abspath('..'))
from conf_common import * # noqa: F403
from conf_common import * # noqa: F403,F401
# General information about the project.
project = u'ESP-IDF 编程指南'