Skip to content

Commit 8dbae7e

Browse files
authored
updates to list manipulation to ignore the header (#12590)
1 parent ca8e3f3 commit 8dbae7e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

composer/tools/composer_dags.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ def get_list_of_dags(
6363
for line in command_output.split("\n"):
6464
if re.compile("^[a-zA-Z].*").findall(line):
6565
list_of_dags.append(line.split()[0])
66-
return list_of_dags
66+
return list_of_dags[1:]
6767

6868
@staticmethod
6969
def _run_shell_command_locally_once(

0 commit comments

Comments
 (0)