diff --git a/Tests/test_image_access.py b/Tests/test_image_access.py index 69e89700c..07c12594a 100644 --- a/Tests/test_image_access.py +++ b/Tests/test_image_access.py @@ -320,5 +320,5 @@ int main(int argc, char* argv[]) try: os.remove("embed_pil.c") except FileNotFoundError: - # If the test was skipped or failed, the file won't exist, + # If the test was skipped or failed, the file won't exist pass diff --git a/Tests/test_pyroma.py b/Tests/test_pyroma.py index 5fc246f72..4f54ecbe5 100644 --- a/Tests/test_pyroma.py +++ b/Tests/test_pyroma.py @@ -10,10 +10,10 @@ pyroma = pytest.importorskip("pyroma", reason="Pyroma not installed") def map_metadata_keys(metadata): - "Convert installed wheel metadata into canonical Core Metadata 2.4 format." - # This was a utility method in pyroma 4.3.3; it was removed in 5.0 + # Convert installed wheel metadata into canonical Core Metadata 2.4 format. + # This was a utility method in pyroma 4.3.3; it was removed in 5.0. # This implementation is constructed from the relevant logic from - # PyRoma 5.0's `build_metadata()` implementation. + # Pyroma 5.0's `build_metadata()` implementation. data = {} for key in set(metadata.keys()):