mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-06-02 04:03:33 +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
|
# FIXME: supports GIMP gradients only
|
||||||
|
|
||||||
fp = open(filename, "rb")
|
with open(filename, "rb") as fp:
|
||||||
|
|
||||||
for paletteHandler in [
|
for paletteHandler in [
|
||||||
GimpPaletteFile.GimpPaletteFile,
|
GimpPaletteFile.GimpPaletteFile,
|
||||||
|
|
Loading…
Reference in New Issue
Block a user