From cd1a1b2e673fdc220a52cc579c94899f70c7e700 Mon Sep 17 00:00:00 2001 From: Joachim Date: Wed, 4 Aug 2021 11:58:53 +0200 Subject: [PATCH] Fix R1725: Consider using Python 3 style super() without arguments --- bookwyrm/storage_backends.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bookwyrm/storage_backends.py b/bookwyrm/storage_backends.py index 6e821444e..4fb0feff0 100644 --- a/bookwyrm/storage_backends.py +++ b/bookwyrm/storage_backends.py @@ -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)