diff --git a/scripts/orca_extra_profile_check.py b/scripts/orca_extra_profile_check.py index 38d737b88f..cb5075a764 100644 --- a/scripts/orca_extra_profile_check.py +++ b/scripts/orca_extra_profile_check.py @@ -64,6 +64,9 @@ def check_filament_compatible_printers(vendor_folder): # Use rglob to recursively find .json files. for file_path in vendor_path.rglob("*.json"): + if file_path.name == 'filaments_color_codes.json': # Ignore non-profile file + continue + try: with open(file_path, 'r', encoding='UTF-8') as fp: # Use custom hook to detect duplicates.