From 17b65adcc57f3b0381031e8fd68d1bdae43ac2aa Mon Sep 17 00:00:00 2001 From: Jens Langhammer Date: Tue, 11 May 2021 13:07:47 +0200 Subject: [PATCH] lib: fix linting Signed-off-by: Jens Langhammer --- authentik/lib/connector.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/authentik/lib/connector.py b/authentik/lib/connector.py index 3ba0e25ca..a4dbb9430 100644 --- a/authentik/lib/connector.py +++ b/authentik/lib/connector.py @@ -10,4 +10,4 @@ class PgCustom(PgDumpConnector): env = kwargs.get("env", {}) env["PGPASSWORD"] = self.settings["PASSWORD"] kwargs["env"] = env - return super(PgDumpConnector, self).run_command(*args, **kwargs) + return super().run_command(*args, **kwargs)