We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents ae0cf3b + e649b4b commit e65e993Copy full SHA for e65e993
example/vectorsearch-cities/__main__.py
@@ -24,7 +24,7 @@ def __init__(self, *args):
24
dbdir = "cities-db"
25
new_db = not os.path.exists(dbdir)
26
self._store = objectbox.Store(model=get_objectbox_model(),directory=dbdir)
27
- self._box = _store.box(City)
+ self._box = self._store.box(City)
28
self._name_prop: Property = City.get_property("name")
29
self._location_prop: Property = City.get_property("location")
30
if new_db:
0 commit comments