mirror of
https://github.com/espressif/esp-idf.git
synced 2024-10-05 20:47:46 -04:00
ci: add missing noqa:F401
This commit is contained in:
parent
0ad6e1b977
commit
d4c88e9e45
@ -7,12 +7,12 @@
|
|||||||
# Importing conf_common adds all the non-language-specific
|
# Importing conf_common adds all the non-language-specific
|
||||||
# parts to this conf module
|
# parts to this conf module
|
||||||
try:
|
try:
|
||||||
from conf_common import * # noqa: F403
|
from conf_common import * # noqa: F403,F401
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
sys.path.insert(0, os.path.abspath('..'))
|
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.
|
# General information about the project.
|
||||||
project = u'ESP-IDF Programming Guide'
|
project = u'ESP-IDF Programming Guide'
|
||||||
|
@ -7,12 +7,12 @@
|
|||||||
# Importing conf_common adds all the non-language-specific
|
# Importing conf_common adds all the non-language-specific
|
||||||
# parts to this conf module
|
# parts to this conf module
|
||||||
try:
|
try:
|
||||||
from conf_common import * # noqa: F403
|
from conf_common import * # noqa: F403,F401
|
||||||
except ImportError:
|
except ImportError:
|
||||||
import sys
|
import sys
|
||||||
import os
|
import os
|
||||||
sys.path.insert(0, os.path.abspath('..'))
|
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.
|
# General information about the project.
|
||||||
project = u'ESP-IDF 编程指南'
|
project = u'ESP-IDF 编程指南'
|
||||||
|
Loading…
Reference in New Issue
Block a user