fossasia / open-event-server

Assert statement used outside of tests BAN-B101
Security
Major
5 months ago4 years old
Use of assert detected. The enclosed code will be removed when compiling to optimised byte code.
 89        return self.issued_at + timedelta(days=EventInvoice.DUE_DATE_DAYS)
 90
 91    def populate(self):
 92        assert self.event is not None 93
 94        with db.session.no_autoflush:
 95            self.user = self.event.owner