Skip to content

Commit 4b6acf8

Browse files
committed
chore: ignore pylint warning temporarily
1 parent 251e400 commit 4b6acf8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cv/components/mea.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -268,7 +268,7 @@ def __process_trace(self, error_trace_file: str, queue: multiprocessing.Queue =
268268
queue.put(proc_elem, timeout=BUSY_WAITING_INTERVAL)
269269
except Full:
270270
self.logger.debug(f"Cannot put trace into queue (size {len(converted_error_trace)}), offloading.")
271-
raise NotImplementedError("Implement offloading to a file.")
271+
raise NotImplementedError("Implement offloading to a file.") # pylint: disable=raise-missing-from
272272
sys.exit(0)
273273
else:
274274
return bool(parsed_error_trace), parsed_error_trace.get('type', WitnessType.VIOLATION)

0 commit comments

Comments
 (0)