Required prerequisites
Question
In examples/data_hyper_cleaning/test_data_hyper_cleaning.py, patch is imported from unittest.mock, but it is not used anywhere in the file. The tests use pytest.mark.parametrize and subprocess.run(...) to execute different operator combinations, so this import appears to be leftover code. Removing the unused import would avoid linting warnings and make the test file cleaner.
Required prerequisites
Question
In
examples/data_hyper_cleaning/test_data_hyper_cleaning.py,patchis imported fromunittest.mock, but it is not used anywhere in the file. The tests usepytest.mark.parametrizeandsubprocess.run(...)to execute different operator combinations, so this import appears to be leftover code. Removing the unused import would avoid linting warnings and make the test file cleaner.