File tree Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Expand file tree Collapse file tree 2 files changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -42,7 +42,7 @@ def generate_steps_for_scheduler(versions) -> list:
42
42
steps : list = []
43
43
snapshots = versions ["snapshots" ]
44
44
for snapshot_version in snapshots :
45
- if snapshots . get ( snapshot_version , "" ) .startswith ("7." ):
45
+ if snapshots [ snapshot_version ] is None or snapshots [ snapshot_version ] .startswith ("7." ):
46
46
continue
47
47
full_stack_version = snapshots [snapshot_version ]
48
48
version_parts = snapshots [snapshot_version ].split ("." )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ def generate_steps_for_scheduler(versions) -> list:
38
38
steps : list = []
39
39
snapshots = versions ["snapshots" ]
40
40
for snapshot_version in snapshots :
41
- if snapshots . get ( snapshot_version , "" ) .startswith ("7." ):
41
+ if snapshots [ snapshot_version ] is None or snapshots [ snapshot_version ] .startswith ("7." ):
42
42
continue
43
43
full_stack_version = snapshots [snapshot_version ]
44
44
version_parts = snapshots [snapshot_version ].split ("." )
You can’t perform that action at this time.
0 commit comments