Skip to content

Commit 4616987

Browse files
author
Moritz-Alexander-Kern
committed
fix typo in docstring
1 parent 54373b9 commit 4616987

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

neo/core/filters.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ class InRange(FilterCondition):
130130
Parameters:
131131
lower_bound: int - The lower bound of the range.
132132
upper_bound: int - The upper bound of the range.
133-
left_closed: bool - If True, the range includes the lower bound (a <= x).
133+
left_closed: bool - If True, the range includes the lower bound (lower_bound <= x).
134134
right_closed: bool - If True, the range includes the upper bound (x <= upper_bound).
135135
"""
136136
def __init__(self, lower_bound, upper_bound, left_closed=False, right_closed=False):

0 commit comments

Comments
 (0)