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

This commit is contained in:
Adam Goldsmith 2024-05-03 12:37:01 -04:00
parent 31cc5312ad
commit 79651731b1
1 changed files with 1 additions and 0 deletions

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