Skip to content

Commit

Permalink
fix long line
Browse files Browse the repository at this point in the history
  • Loading branch information
noursaidi committed Aug 2, 2023
1 parent 50ef8e2 commit 36a5141
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bin/sequencer_report
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ class SequencerReport:
"""Load sequencer test results and features"""
results = {}
features = {}
stages_template = {stage: FeatureStageScore(stage=stage) for stage in STAGES}
stages_template = {s: FeatureStageScore(stage=s) for s in STAGES}
for feature, sequences in self.results_json["features"].items():
features[feature] = copy.deepcopy(stages_template)
for name, result in sequences["sequences"].items():
Expand Down

0 comments on commit 36a5141

Please sign in to comment.