mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-05-31 11:13:08 +03:00
Close file after reading in ImagePalette.load()
Fixes some "ResourceWarning: unclosed file ..." when running tests with warnings enabled.
This commit is contained in:
parent
76d156bef0
commit
6bc8fdd342
|
@ -197,7 +197,7 @@ def load(filename):
|
|||
|
||||
# FIXME: supports GIMP gradients only
|
||||
|
||||
fp = open(filename, "rb")
|
||||
with open(filename, "rb") as fp:
|
||||
|
||||
for paletteHandler in [
|
||||
GimpPaletteFile.GimpPaletteFile,
|
||||
|
|
Loading…
Reference in New Issue
Block a user