(session)
| 36 | assert fut is self._read_fut, (fut, self._read_fut) |
| 37 | # EMPTY LINE WITH WHITESPACE (this comment will be removed) |
| 38 | def example(session): |
| 39 | result = session.query(models.Customer.id).filter( |
| 40 | models.Customer.account_id == account_id, |
| 41 | models.Customer.email == email_address, |
| 42 | ).order_by( |
| 43 | models.Customer.id.asc() |
| 44 | ).all() |
| 45 | def long_lines(): |
| 46 | if True: |
| 47 | typedargslist.extend( |
nothing calls this directly
no outgoing calls
no test coverage detected