Fix R1725: Consider using Python 3 style super() without arguments

This commit is contained in:
Joachim 2021-08-04 11:58:53 +02:00
parent bf3175f8d5
commit cd1a1b2e67

View file

@ -46,4 +46,4 @@ class ImagesStorage(S3Boto3Storage): # pylint: disable=abstract-method
# Upload the object which will auto close the
# content_autoclose instance
return super(ImagesStorage, self)._save(name, content_autoclose)
return super()._save(name, content_autoclose)