Skip to content

Commit 5a94cf3

Browse files
committed
Issue#1537: Removed inline comments.
1 parent df3b61b commit 5a94cf3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

vsg/token_map.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,9 +26,9 @@ def get_token_indexes_between_indexes(self, oToken, iStart, iEnd):
2626
if not lIndexes:
2727
return []
2828
# Use a binary search to get the first index > the start.
29-
iLowIndex = bisect.bisect_right(lIndexes, iStart) # first index > iStart
29+
iLowIndex = bisect.bisect_right(lIndexes, iStart)
3030
# Use a binary search to get the last index < the end.
31-
iHighIndex = bisect.bisect_left(lIndexes, iEnd) # first index >= iEnd
31+
iHighIndex = bisect.bisect_left(lIndexes, iEnd)
3232
return lIndexes[iLowIndex:iHighIndex]
3333

3434
def get_line_number_of_index(self, iIndex):

0 commit comments

Comments
 (0)