From be8e1a26326edb6b094a764797460181ae8b33b6 Mon Sep 17 00:00:00 2001 From: Daniele Varrazzo Date: Fri, 7 Jun 2019 18:20:36 +0100 Subject: [PATCH] Making my linter happy --- lib/extras.py | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/lib/extras.py b/lib/extras.py index 257153ef..afc31c32 100644 --- a/lib/extras.py +++ b/lib/extras.py @@ -566,8 +566,9 @@ class ReplicationCursor(_replicationCursor): command = "DROP_REPLICATION_SLOT %s" % quote_ident(slot_name, self) self.execute(command) - def start_replication(self, slot_name=None, slot_type=None, start_lsn=0, - timeline=0, options=None, decode=False, status_interval=10): + def start_replication( + self, slot_name=None, slot_type=None, start_lsn=0, + timeline=0, options=None, decode=False, status_interval=10): """Start replication stream.""" command = "START_REPLICATION " @@ -621,7 +622,8 @@ class ReplicationCursor(_replicationCursor): command += "%s %s" % (quote_ident(k, self), _A(str(v))) command += ")" - self.start_replication_expert(command, decode=decode, status_interval=status_interval) + self.start_replication_expert( + command, decode=decode, status_interval=status_interval) # allows replication cursors to be used in select.select() directly def fileno(self):