diff --git a/.github/workflows/wheels.yml b/.github/workflows/wheels.yml index 1700deeb9e..5116951e36 100644 --- a/.github/workflows/wheels.yml +++ b/.github/workflows/wheels.yml @@ -94,8 +94,9 @@ jobs: - name: Download wheels uses: actions/download-artifact@v4 with: - name: wheels-${{ matrix.os }} + pattern: wheels-* path: dist + merge-multiple: true - name: Publish to PyPI uses: pypa/gh-action-pypi-publish@v1.8.12 diff --git a/pyart/retrieve/echo_class.py b/pyart/retrieve/echo_class.py index 039034bfa5..9a6e0548e7 100644 --- a/pyart/retrieve/echo_class.py +++ b/pyart/retrieve/echo_class.py @@ -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" ), } } @@ -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" ), } @@ -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" ), }