Skip to content

Commit

Permalink
fix: misspelled variable
Browse files Browse the repository at this point in the history
  • Loading branch information
BobBorges committed Jan 14, 2025
1 parent 5ca0469 commit 588a95a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions quality/plot/mp-coverage/mp-coverage.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,8 +107,8 @@ def main(args):

if args.version != "v99.99.99":
for c in ["v99.99.99", "v0.0.0"]:
if c in mp_coverage.columns:
mp_coverage.drop(columns=[c], inplace=True)
if c in mp_coverage_df.columns:
mp_coverage_df.drop(columns=[c], inplace=True)

for s in skip:
df.drop(df[df['protocol']==s].index, inplace=True)
Expand Down

0 comments on commit 588a95a

Please sign in to comment.