Skip to content

Commit

Permalink
To allow a further fix in this branch for checkvars.py remove the ava…
Browse files Browse the repository at this point in the history
…ilable duplicate removal #253.
  • Loading branch information
treerink committed Mar 14, 2019
1 parent 62554a4 commit 7642736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ece2cmor3/scripts/checkvars.py
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ def main():
loaded = [t for m in active_components for t in matches[m]]
ignored, identified_missing, missing, dismissed = taskloader.split_targets(omitted_targets)

loaded_targets = sorted(list(set(loaded)), key=lambda tgt: (tgt.table, tgt.variable))
loaded_targets = sorted(loaded, key=lambda tgt: (tgt.table, tgt.variable))
ignored_targets = sorted(list(set(ignored)), key=lambda tgt: (tgt.table, tgt.variable))
identified_missing_targets = sorted(identified_missing, key=lambda tgt: (tgt.table, tgt.variable))
missing_targets = sorted(missing, key=lambda tgt: (tgt.table, tgt.variable))
Expand Down

0 comments on commit 7642736

Please sign in to comment.