Skip to content

Commit

Permalink
Fix a couple of bugs.
Browse files Browse the repository at this point in the history
  • Loading branch information
dbernstein committed Dec 9, 2024
1 parent ee6c9c8 commit 34c2189
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/palace/manager/api/monitor.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ class LoanlikeReaperMonitor(ReaperMonitor):
]

def __init__(self, *args, **kwargs):
super().__init__(args, kwargs)
super().__init__(*args, **kwargs)
self._events_to_be_logged = []

@property
Expand Down Expand Up @@ -59,7 +59,7 @@ def delete(self, row) -> None:
patron=row.patron,
)
super().delete(row)
self.events_to_be_logged.append(event)
self._events_to_be_logged.append(event)

def after_commit(self) -> None:
super().after_commit()
Expand Down

0 comments on commit 34c2189

Please sign in to comment.