ruff: Fix PLE0101 Explicit return in __init__.

Signed-off-by: Anders Kaseorg <anders@zulip.com>
This commit is contained in:
Anders Kaseorg
2023-02-22 16:17:24 -08:00
committed by Tim Abbott
parent f78c2eab2c
commit d145644f85

View File

@@ -64,4 +64,4 @@ class ZulipStorage(IgnoreBundlesManifestStaticFilesStorage):
# deployment, which ensures that we always use the correct static
# assets for each deployment.
def __init__(self) -> None:
return super().__init__(manifest_storage=FileSystemStorage(location=settings.DEPLOY_ROOT))
super().__init__(manifest_storage=FileSystemStorage(location=settings.DEPLOY_ROOT))