Skip to content

Commit

Permalink
STY: Fix for ruff linting.
Browse files Browse the repository at this point in the history
  • Loading branch information
zssherman committed Mar 7, 2024
1 parent d6466b3 commit 44c56a4
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions pyart/retrieve/echo_class.py
Original file line number Diff line number Diff line change
Expand Up @@ -498,9 +498,7 @@ def feature_detection(
"valid_min": 0,
"valid_max": 3,
"comment_1": (
"{} = No surface echo/Undefined, {} = Background echo, {} = Features, {} = weak echo".format(
nosfcecho, bkgd_val, feat_val, weakecho
)
f"{nosfcecho} = No surface echo/Undefined, {bkgd_val} = Background echo, {feat_val} = Features, {weakecho} = weak echo"
),
}
}
Expand Down Expand Up @@ -583,9 +581,7 @@ def feature_detection(
"valid_min": 0,
"valid_max": 3,
"comment_1": (
"{} = No surface echo/Undefined, {} = Background echo, {} = Features, {} = weak echo".format(
nosfcecho, bkgd_val, feat_val, weakecho
)
f"{nosfcecho} = No surface echo/Undefined, {bkgd_val} = Background echo, {feat_val} = Features, {weakecho} = weak echo"
),
}

Expand All @@ -596,9 +592,7 @@ def feature_detection(
"valid_min": 0,
"valid_max": 3,
"comment_1": (
"{} = No surface echo/Undefined, {} = Background echo, {} = Features, {} = weak echo".format(
nosfcecho, bkgd_val, feat_val, weakecho
)
f"{nosfcecho} = No surface echo/Undefined, {bkgd_val} = Background echo, {feat_val} = Features, {weakecho} = weak echo"
),
}

Expand Down

0 comments on commit 44c56a4

Please sign in to comment.