Skip to content

Commit 787904a

Browse files
committed
Minor readibility issues
1 parent 5e16cfe commit 787904a

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

convert.py

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,8 +44,8 @@ def CoordsFromFile(filename):
4444
for line in rawfile:
4545
if line:
4646
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 )
4949

5050

5151
a = np.array(coords, dtype=float)

pysolo_db.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,8 @@ def _OnKeyDown(self, event):
1818
"""
1919
used for autocompletion
2020
"""
21-
if event.GetKeyCode() == 9: #if we press the TAB KEY
21+
TAB_KEY = 9
22+
if event.GetKeyCode() == TAB_KEY:
2223
row = self.GetGridCursorRow()
2324
col = self.GetGridCursorCol()
2425
value = self.autoComplete(row, col)

0 commit comments

Comments
 (0)