little edits

This commit is contained in:
Bastian Schroll 2018-01-08 07:47:32 +01:00
parent f64a521bd9
commit 9a7dbaeade
3 changed files with 5 additions and 7 deletions

View file

@ -441,7 +441,7 @@ EXTRACT_ALL = YES
# be included in the documentation. # be included in the documentation.
# The default value is: NO. # The default value is: NO.
EXTRACT_PRIVATE = NO EXTRACT_PRIVATE = YES
# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal # If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
# scope will be included in the documentation. # scope will be included in the documentation.
@ -453,7 +453,7 @@ EXTRACT_PACKAGE = NO
# included in the documentation. # included in the documentation.
# The default value is: NO. # The default value is: NO.
EXTRACT_STATIC = NO EXTRACT_STATIC = YES
# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined # If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
# locally in source files will be included in the documentation. If set to NO, # locally in source files will be included in the documentation. If set to NO,

View file

@ -61,10 +61,8 @@ class Descriptor:
class DescriptionList: class DescriptionList:
def __init__(self): # , csvType): def __init__(self):
"""!Loads the given CSV file into internal list """!Loads the given CSV file into internal list"""
@param csvType: Name of the CSV file without `.csv`"""
logging.debug("create new descriptionList") logging.debug("create new descriptionList")
self._descriptionList = {} self._descriptionList = {}
# self.loadCSV(csvType) # self.loadCSV(csvType)

View file

@ -30,7 +30,7 @@ BIN_PATH = ROOT_PATH + "/_bin/"
def createIfNotExist(dirPath): def createIfNotExist(dirPath):
"""!Checks if an directory is existing and create it if not """!Checks if an directory is existing and create it if not
@param dirName: Path of the directory @param dirPath: Path of the directory
@return Path of the directory""" @return Path of the directory"""
try: try:
if not os.path.exists(dirPath): if not os.path.exists(dirPath):