Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
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
config
Function · 0.80
main_js
Method · 0.80
get_share_buttons_prefs
Method · 0.80
load
Function · 0.80
test_plugin_datastore
Method · 0.80
Calls
1
get_value
Method · 0.95
Tested by
1
test_plugin_datastore
Method · 0.64