(self)
| 9 | class SinglyLinkedList(): |
| 10 | #constructor to initialise head and tail of a Singly Linked List. Iniltially set to None |
| 11 | def __init__(self): |
| 12 | self.head = self.tail = None |
| 13 | |
| 14 | #method to check if the List is empty |
| 15 | def isEmpty(self): |
nothing calls this directly
no outgoing calls
no test coverage detected