From 8026f1973b91a559b8d1e5e412abbb9f679078dc Mon Sep 17 00:00:00 2001 From: vatsrahul1001 Date: Wed, 21 Aug 2024 17:31:16 +0530 Subject: [PATCH] updating target_line in refactor_dag.py --- .github/scripts/refactor_dag.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/scripts/refactor_dag.py b/.github/scripts/refactor_dag.py index 18cb0db5e..89f8b7eff 100644 --- a/.github/scripts/refactor_dag.py +++ b/.github/scripts/refactor_dag.py @@ -28,5 +28,5 @@ def remove_lines_after(file_path, target_line): parser = argparse.ArgumentParser() parser.add_argument("file_path", help="file path", type=str) args = parser.parse_args() - target_line = "from tests.system.utils import get_test_run" + target_line = "from tests.system.utils.watcher import watcher" remove_lines_after(args.file_path, target_line)