Skip to content

Commit ac49d11

Browse files
committed
box: docstring fix for indentation error #52
1 parent dd3dcd1 commit ac49d11

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

objectbox/box.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -164,7 +164,8 @@ def query(self, condition: Optional[QueryCondition] = None) -> QueryBuilder:
164164
:param condition:
165165
If given, applies the given high-level condition to the new QueryBuilder object.
166166
Useful for a user-friendly API design; for example:
167-
``box.query(name_property.equals("Johnny")).build()``
167+
168+
``box.query(name_property.equals("Johnny")).build()``
168169
"""
169170
qb = QueryBuilder(self._store, self)
170171
if condition is not None:

0 commit comments

Comments
 (0)