We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8491719 commit 78424fdCopy full SHA for 78424fd
src/codemodder/codetf.py
@@ -108,6 +108,8 @@ class ChangeSet(BaseModel):
108
ai: Optional[AIMetadata] = None
109
strategy: Optional[Strategy] = None
110
provisional: Optional[bool] = False
111
+ # For fixed findings that are not associated with a specific change
112
+ fixedFindings: Optional[list[Finding]] = None
113
114
def with_changes(self, changes: list[Change]) -> ChangeSet:
115
return ChangeSet(
@@ -117,6 +119,7 @@ def with_changes(self, changes: list[Change]) -> ChangeSet:
117
119
ai=self.ai,
118
120
strategy=self.strategy,
121
provisional=self.provisional,
122
+ fixedFindings=self.fixedFindings,
123
)
124
125
0 commit comments