Skip to content

Commit 96017ca

Browse files
committed
Update android.py
1 parent abaa097 commit 96017ca

1 file changed

Lines changed: 2 additions & 0 deletions

File tree

gnss_lib_py/parsers/android.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -670,6 +670,8 @@ def solve_kaggle_dataset(folder_path, solver, verbose=False, *args, **kwargs):
670670
# iterate through all trace options
671671
for trace_name in sorted(os.listdir(folder_path)):
672672
trace_path = os.path.join(folder_path, trace_name)
673+
if not os.path.isdir(trace_path): # pragma: no cover
674+
continue
673675
# iterate through all phone types
674676
for phone_type in sorted(os.listdir(trace_path)):
675677
data_path = os.path.join(folder_path,trace_name,

0 commit comments

Comments
 (0)