(self, title, due_date)
| 50 | print("Example 1") |
| 51 | class Book: |
| 52 | def __init__(self, title, due_date): |
| 53 | self.title = title |
| 54 | self.due_date = due_date |
| 55 | |
| 56 | |
| 57 | print("Example 2") |
nothing calls this directly
no outgoing calls
no test coverage detected