Merge branch 'bugfix/add_missing_noqa' into 'master'

ci: add missing noqa:F401

See merge request espressif/esp-idf!8844
pull/5408/head
Anton Maklakov 2020-05-21 11:27:57 +08:00
commit dadc96c280
2 zmienionych plików z 4 dodań i 4 usunięć

Wyświetl plik

@ -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'

Wyświetl plik

@ -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 编程指南'