Skip to content

Commit

Permalink
Add more documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
JokeWaumans committed Aug 11, 2024
1 parent a5f5533 commit 0fa4020
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion mlx/coverity_item_element.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,14 @@ def create_row(self, cells):

def cov_attribute_value_to_col(self, defect, name):
"""
Search defects array and return value for name
Create cell with the value in the defect for the given name.
Args:
defect (dict): The defect where the keys are column keys and the values are the corresponding defect values
name (str): The key name of the attribute
Returns:
(nodes.entry) Entry node containing a paragraph with the given contents
"""
if name in defect:
col = self.create_cell(defect[name])
Expand Down

0 comments on commit 0fa4020

Please sign in to comment.