(self)
| 1450 | |
| 1451 | @property |
| 1452 | def wisdomFile(self) -> str: |
| 1453 | if not bool(self.__wisdomFile): |
| 1454 | if not os.access('ne3_wisdom.pkl', os.W_OK): |
| 1455 | raise OSError('insufficient permissions to write to {}'.format('ne3_wisdom.pkl')) |
| 1456 | self.__wisdomFile = 'ne3_wisdom.pkl' |
| 1457 | return self.__wisdomFile |
| 1458 | |
| 1459 | @wisdomFile.setter |
| 1460 | def wisdomFile(self, newName: str) -> None: |
nothing calls this directly
no outgoing calls
no test coverage detected