Skip to content

Commit

Permalink
Fix packageAction values
Browse files Browse the repository at this point in the history
  • Loading branch information
drdavella committed Oct 25, 2023
1 parent 4ec54a3 commit f98f83a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/codemodder/change.py
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ class PackageAction:

def to_json(self):
return {
"action": self.action.value,
"result": self.result.value,
"action": self.action.value.upper(),
"result": self.result.value.upper(),
"package": self.package,
}

Expand Down

0 comments on commit f98f83a

Please sign in to comment.