mirror of
https://github.com/bookwyrm-social/bookwyrm.git
synced 2024-11-25 11:01:12 +00:00
Fix R1725: Consider using Python 3 style super() without arguments
This commit is contained in:
parent
bf3175f8d5
commit
cd1a1b2e67
1 changed files with 1 additions and 1 deletions
|
@ -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)
|
||||
|
|
Loading…
Reference in a new issue