Skip to content

Commit

Permalink
Correct variable name #2714
Browse files Browse the repository at this point in the history
  • Loading branch information
iamleeg committed Jul 14, 2022
1 parent 9945aba commit 2e802d9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ def excluded_cases(self, source_id: str, filter: Optional[str] = None):
and c.caseReference.status == "EXCLUDED"
]

def delete_case(self, source_id: str):
del self.cases[source_id]
def delete_case(self, case_id: str):
del self.cases[case_id]

def delete_cases(self, query):
self.cases = dict()
Expand Down

0 comments on commit 2e802d9

Please sign in to comment.