From cf83ba01d02e8a4bf9e171a40b34a799bc57c582 Mon Sep 17 00:00:00 2001 From: zssherman Date: Tue, 8 Oct 2024 09:34:13 -0500 Subject: [PATCH] MNT: Remove unused parameter. --- tests/io/test_output_to_geotiff.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/io/test_output_to_geotiff.py b/tests/io/test_output_to_geotiff.py index f9608dbdcc..06e8aa8511 100644 --- a/tests/io/test_output_to_geotiff.py +++ b/tests/io/test_output_to_geotiff.py @@ -155,7 +155,7 @@ def test_write_grid_geotiff_missing_field(): @pytest.mark.skipif( not pyart.io.output_to_geotiff.IMPORT_FLAG, reason="GDAL is not installed." ) -def test_write_grid_geotiff_transparent_background(outfile=None): +def test_write_grid_geotiff_transparent_background(): grid = make_tiny_grid_with_mask() with pyart.testing.InTemporaryDirectory() as tmpdir: tmp = Path(tmpdir)