mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-01-25 00:34:14 +03:00
Merge pull request #3873 from jdufresne/drop-index
Remove unnecessary numeric placeholders from format strings
This commit is contained in:
commit
7b4d2b271d
|
@ -3000,13 +3000,13 @@ def _apply_env_variables(env=None):
|
|||
try:
|
||||
var = int(var) * units
|
||||
except ValueError:
|
||||
warnings.warn("{0} is not int".format(var_name))
|
||||
warnings.warn("{} is not int".format(var_name))
|
||||
continue
|
||||
|
||||
try:
|
||||
setter(var)
|
||||
except ValueError as e:
|
||||
warnings.warn("{0}: {1}".format(var_name, e))
|
||||
warnings.warn("{}: {}".format(var_name, e))
|
||||
|
||||
|
||||
_apply_env_variables()
|
||||
|
|
Loading…
Reference in New Issue
Block a user