Skip to content

Commit e65e993

Browse files
committed
Merge branch 'refs/heads/45-bump-to-4.0.0'
2 parents ae0cf3b + e649b4b commit e65e993

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

example/vectorsearch-cities/__main__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ def __init__(self, *args):
2424
dbdir = "cities-db"
2525
new_db = not os.path.exists(dbdir)
2626
self._store = objectbox.Store(model=get_objectbox_model(),directory=dbdir)
27-
self._box = _store.box(City)
27+
self._box = self._store.box(City)
2828
self._name_prop: Property = City.get_property("name")
2929
self._location_prop: Property = City.get_property("location")
3030
if new_db:

0 commit comments

Comments
 (0)