diff options
| author | kickbutt <[email protected]> | 2024-01-23 23:36:43 +0300 |
|---|---|---|
| committer | kickbutt <[email protected]> | 2024-01-23 23:55:22 +0300 |
| commit | fe742a0b69a530f86d1ea7aa84978d673256f8b7 (patch) | |
| tree | a045a5eb8dba770797e84d0b233098605396027d /contrib/python/Pillow/py3/PIL/PpmImagePlugin.py | |
| parent | bd7d89b121ae7b9f4427766292c950fcc91c2975 (diff) | |
Fix separator in CUDA_ARCHITECTURES
Diffstat (limited to 'contrib/python/Pillow/py3/PIL/PpmImagePlugin.py')
| -rw-r--r-- | contrib/python/Pillow/py3/PIL/PpmImagePlugin.py | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/contrib/python/Pillow/py3/PIL/PpmImagePlugin.py b/contrib/python/Pillow/py3/PIL/PpmImagePlugin.py index e480ab05581..25dbfa5b0bc 100644 --- a/contrib/python/Pillow/py3/PIL/PpmImagePlugin.py +++ b/contrib/python/Pillow/py3/PIL/PpmImagePlugin.py @@ -13,7 +13,7 @@ # # See the README file for information on usage and redistribution. # - +from __future__ import annotations from . import Image, ImageFile from ._binary import i16be as i16 @@ -328,9 +328,6 @@ def _save(im, fp, filename): fp.write(b"65535\n") ImageFile._save(im, fp, [("raw", (0, 0) + im.size, 0, (rawmode, 0, 1))]) - # ALTERNATIVE: save via builtin debug function - # im._dump(filename) - # # -------------------------------------------------------------------- |
