membershipworks: Fix missing @property on EventExt.ready_for_invoice
All checks were successful
Ruff / ruff (push) Successful in 29s
Test / test (push) Successful in 4m53s

This commit is contained in:
Adam Goldsmith 2024-05-03 12:37:01 -04:00
parent 31cc5312ad
commit 79651731b1

View File

@ -563,6 +563,7 @@ class EventExt(Event):
return self.instructor.member == member
return False
@property
def ready_for_invoice(self) -> bool:
return (
self.instructor is not None