Added filename placeholder in winbuild URL by radarhere · Pull Request #8498 · python-pillow/Pillow

There are several places in winbuild/build_prepare.py where the "filename" is replicated in the "url"

"zlib": {
"url": f"https://zlib.net/zlib{V['ZLIB_DOTLESS']}.zip",
"filename": f"zlib{V['ZLIB_DOTLESS']}.zip",

I wonder if

"zlib": {
    "url": "https://zlib.net/FILENAME",
    "filename": f"zlib{V['ZLIB_DOTLESS']}.zip",

is neater, reducing duplication?

Feel free to reject if others think it isn't simpler.