(self, location, info)
| 88 | |
| 89 | class Settings: |
| 90 | def __init__(self, location, info): |
| 91 | # type: (basestring, dict) -> None |
| 92 | # path string or empty string. |
| 93 | self.location = location |
| 94 | self.info = info |
| 95 | |
| 96 | # def save(self): |
| 97 | # f = open(self.location, "wb") |
nothing calls this directly
no outgoing calls
no test coverage detected