MCPcopy Index your code
hub / github.com/WebODM/WebODM / get_bool

Method get_bool

app/plugins/data_store.py:57–58  ·  view source on GitHub ↗
(self, key, default=False)

Source from the content-addressed store, hash-verified

55 return self.set_value('float', key, value)
56
57 def get_bool(self, key, default=False):
58 return self.get_value('bool', key, default)
59
60 def set_bool(self, key, value):
61 return self.set_value('bool', key, value)

Callers 5

configFunction · 0.80
main_jsMethod · 0.80
loadFunction · 0.80
test_plugin_datastoreMethod · 0.80

Calls 1

get_valueMethod · 0.95

Tested by 1

test_plugin_datastoreMethod · 0.64