(self)
| 11 | |
| 12 | class LocalLogger(Logger): |
| 13 | def __init__(self) -> None: |
| 14 | super().__init__() |
| 15 | self.experiment = None |
| 16 | os.system(f"rm -r {LOG_PATH}") |
| 17 | |
| 18 | @property |
| 19 | def name(self): |
nothing calls this directly
no outgoing calls
no test coverage detected