File tree 2 files changed +4
-3
lines changed
2 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -44,8 +44,8 @@ def CoordsFromFile(filename):
44
44
for line in rawfile :
45
45
if line :
46
46
data = [xy .split (',' ) if ',' in xy else empty_coord for xy in line .split (TAB )[HEADER_LENGTH :] ]
47
- if len ( data ) == 32 : # If the computer crashes during data collection sometimes a line is not saved properly
48
- coords .append ( data )
47
+ # If the computer crashes during data collection sometimes a line is not saved properly
48
+ if len ( data ) == 32 : coords .append ( data )
49
49
50
50
51
51
a = np .array (coords , dtype = float )
Original file line number Diff line number Diff line change @@ -18,7 +18,8 @@ def _OnKeyDown(self, event):
18
18
"""
19
19
used for autocompletion
20
20
"""
21
- if event .GetKeyCode () == 9 : #if we press the TAB KEY
21
+ TAB_KEY = 9
22
+ if event .GetKeyCode () == TAB_KEY :
22
23
row = self .GetGridCursorRow ()
23
24
col = self .GetGridCursorCol ()
24
25
value = self .autoComplete (row , col )
You can’t perform that action at this time.
0 commit comments