| 51 | |
| 52 | |
| 53 | class Author: |
| 54 | def __init__(self, id, first, last, book_count, age, address): |
| 55 | self.id = id |
| 56 | self.first = first |
| 57 | self.last = last |
| 58 | self.book_count = book_count |
| 59 | self.age = age |
| 60 | self.address = address |
| 61 | |
| 62 | |
| 63 | class Quote: |
no outgoing calls
no test coverage detected
searching dependent graphs…