docs: Correct Python coding style

This commit is contained in:
Roland Dobai
2018-12-01 09:25:08 +01:00
parent eb27686416
commit b56ed1a99e
9 changed files with 157 additions and 141 deletions

View File

@@ -6,9 +6,10 @@
# Importing conf_common adds all the non-language-specific
# parts to this conf module
import sys, os
import sys
import os
sys.path.insert(0, os.path.abspath('..'))
from conf_common import *
from conf_common import * # noqa: F401, F403 - need to make available everything from common
# General information about the project.
project = u'ESP-IDF Programming Guide'