Skip to content

Commit

Permalink
More readthedocs stuff
Browse files Browse the repository at this point in the history
  • Loading branch information
russellmcdonell committed Feb 15, 2022
1 parent 83eff29 commit 3bbd755
Showing 1 changed file with 9 additions and 6 deletions.
15 changes: 9 additions & 6 deletions pyDMNrules/DMNrules.py
Original file line number Diff line number Diff line change
Expand Up @@ -2491,10 +2491,10 @@ def getGlossary(self):
This routine returns the Glossary - each Variable, within each Business Concept.
Args:
NONE
None
Returns:
dictionary: (keys:Business Concept names, value:dictionary(keys:Variable names, value:tuple(FEELname, current value)))
dict:{keys:Business Concept names, value:dict{keys:Variable names, value:tuple(FEELname, current value)}}
"""
self.errors = []
Expand Down Expand Up @@ -2528,9 +2528,11 @@ def getDecision(self):
None
Returns:
list: of lists (2 dimensional array - table)
list:[[]]
- row[0] is the headings. The following rows are input test(s), Decisions, Execute Decision Tables, Annotation(s)
- a list of lists (2 dimensional array - table)
- row[0] is the headings.
- The following rows are input test(s), Decisions, Execute Decision Tables, Annotation(s)
"""
self.errors = []
Expand Down Expand Up @@ -2575,9 +2577,10 @@ def getSheets(self):
None
Returns:
dictionary: (keys:tableName, value:xhml)
dict:{keys:tableName, value:xhml}
- The xml is XHTML compliant. <div xmlns="http://www.w3.org/1999/xhtml"><table> .. </table></div>
- The xml is XHTML compliant.
- e.g. <div xmlns="http://www.w3.org/1999/xhtml">Name<br/><table> .. </table></div>
"""
sheets = {}
Expand Down

0 comments on commit 3bbd755

Please sign in to comment.