diff --git a/_gen/doxygen.ini b/_gen/doxygen.ini index 10a17d6..9eafaa7 100644 --- a/_gen/doxygen.ini +++ b/_gen/doxygen.ini @@ -441,7 +441,7 @@ EXTRACT_ALL = YES # be included in the documentation. # 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 # scope will be included in the documentation. @@ -453,7 +453,7 @@ EXTRACT_PACKAGE = NO # included in the documentation. # 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 # locally in source files will be included in the documentation. If set to NO, diff --git a/boswatch/descriptor/descriptor.py b/boswatch/descriptor/descriptor.py index 304093e..6556d53 100644 --- a/boswatch/descriptor/descriptor.py +++ b/boswatch/descriptor/descriptor.py @@ -61,10 +61,8 @@ class Descriptor: class DescriptionList: - def __init__(self): # , csvType): - """!Loads the given CSV file into internal list - - @param csvType: Name of the CSV file without `.csv`""" + def __init__(self): + """!Loads the given CSV file into internal list""" logging.debug("create new descriptionList") self._descriptionList = {} # self.loadCSV(csvType) diff --git a/boswatch/utils/paths.py b/boswatch/utils/paths.py index dd64d30..164a6a5 100644 --- a/boswatch/utils/paths.py +++ b/boswatch/utils/paths.py @@ -30,7 +30,7 @@ BIN_PATH = ROOT_PATH + "/_bin/" def createIfNotExist(dirPath): """!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""" try: if not os.path.exists(dirPath):