Skip to content

Commit 60eb837

Browse files
committedJun 18, 2018
Fix TypeError exception for YCM201 and YCM202 rules
Check that the next start position and the previous end position are well defined before accessing them.
1 parent 4c0c2c9 commit 60eb837

File tree

3 files changed

+20
-0
lines changed

3 files changed

+20
-0
lines changed
 

‎HISTORY.rst

+5
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@
22
Release history
33
===============
44

5+
0.2.0 (pending)
6+
---------------
7+
8+
* Fix TypeError exception for YCM201 and YCM202 rules.
9+
510
0.1.0 (2018-05-30)
611
------------------
712

‎flake8_ycm.py

+2
Original file line numberDiff line numberDiff line change
@@ -73,13 +73,15 @@ def SpacesInsideBrackets( logical_line, tokens ):
7373
yield end, code + message
7474
if ( next_token_type not in [ tokenize.NL, tokenize.NEWLINE ] and
7575
next_text != CORRESPONDING_BRACKET[ text ] and
76+
next_start and
7677
next_start[ 0 ] == start[ 0 ] and
7778
next_start[ 1 ] - start[ 1 ] != 2 ):
7879
code = 'YCM201'
7980
message = ' exactly one space required after {}'.format( text )
8081
yield end, code + message
8182
if text in RIGHT_BRACKETS:
8283
if ( prev_text != CORRESPONDING_BRACKET[ text ] and
84+
prev_end and
8385
prev_end[ 0 ] == end[ 0 ] and
8486
end[ 1 ] - prev_end[ 1 ] != 2 ):
8587
code = 'YCM202'

‎tests/spaces_inside_brackets_test.py

+13
Original file line numberDiff line numberDiff line change
@@ -85,3 +85,16 @@ def test( ):
8585
Error( 2, 14, 'YCM204', 'no spaces between [ and ] for empty content' ),
8686
Error( 3, 14, 'YCM204', 'no spaces between { and } for empty content' ) ]
8787
)
88+
89+
90+
def InvalidSyntax_test():
91+
RunTest(
92+
"""
93+
{
94+
'key': 'value' )
95+
}
96+
97+
{
98+
""",
99+
[]
100+
)

0 commit comments

Comments
 (0)
Please sign in to comment.