Use old fstring syntaxxxxxxxxxxxxxxxxxxxxxxxxx

This commit is contained in:
David Robertson 2023-02-07 19:36:18 +00:00
parent d87276dc0f
commit 1b6ab81658
No known key found for this signature in database
GPG key ID: 903ECE108A39DEDD

View file

@ -105,7 +105,7 @@ def main(wheel_file: str, dest_dir: str, archs: Optional[str]) -> None:
from pip._internal.utils.compatibility_tags import get_supported
w = Wheel(wheel_file)
tags = get_supported()
print(f"{w=} {tags=} {w.supported(tags)=}")
print(f"w={w} tags={tags} supported={w.supported(tags)}")
if __name__ == "__main__":