``is_empty`` determine if the active settings schema is empty :return: True if the active settings schema is empty, False otherwise :rtype: bool
(self)
| 244 | return core.BNSettingsContains(self.handle, key) |
| 245 | |
| 246 | def is_empty(self) -> bool: |
| 247 | """ |
| 248 | ``is_empty`` determine if the active settings schema is empty |
| 249 | |
| 250 | :return: True if the active settings schema is empty, False otherwise |
| 251 | :rtype: bool |
| 252 | """ |
| 253 | return core.BNSettingsIsEmpty(self.handle) |
| 254 | |
| 255 | def keys(self) -> List[str]: |
| 256 | """ |
no outgoing calls
no test coverage detected