(self, lock_file)
| 96 | """ |
| 97 | |
| 98 | def __init__(self, lock_file): |
| 99 | """ |
| 100 | """ |
| 101 | #: The path of the file lock. |
| 102 | self.lock_file = lock_file |
| 103 | return None |
| 104 | |
| 105 | def __str__(self): |
| 106 | temp = "The file lock '{}' could not be acquired."\ |
nothing calls this directly
no outgoing calls
no test coverage detected