Support tap files

pull/248/head
migo101 2023-07-07 13:06:43 +02:00
rodzic 04ff18472d
commit d5a1921644
1 zmienionych plików z 1 dodań i 1 usunięć

Wyświetl plik

@ -21,7 +21,7 @@ class BlenderCAMTest(unittest.TestCase):
for file in files:
if file.endswith('.blend'):
blend_file = file
elif file.startswith('_') and file.endswith('.gcode'):
elif file.startswith('_') and (file.endswith('.gcode') or file.endswith('.tap')):
gcode_files = gcode_files or []
gcode_files.append(file)