Location via proxy:   [ UP ]  
[Report a bug]   [Manage cookies]                
Skip to content

Commit d65ab69

Browse files
committed
fix code style to pass flake8 test
1 parent 6e14fbb commit d65ab69

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

testgres/node.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -526,8 +526,8 @@ def get_auth_method(t):
526526
wal_level=wal_level) # yapf: disable
527527
else:
528528
self.append_conf(hot_standby=True,
529-
wal_keep_size=WAL_KEEP_SIZE,
530-
wal_level=wal_level) # yapf: disable
529+
wal_keep_size=WAL_KEEP_SIZE,
530+
wal_level=wal_level) # yapf: disable
531531

532532
# logical replication
533533
if allow_logical:

testgres/utils.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ def execute_utility(args, logfile=None):
7979

8080
if out:
8181
# comment-out lines
82-
lines = ('# ' + l for l in out.splitlines(True))
82+
lines = ('# ' + line for line in out.splitlines(True))
8383
file_out.write(u'\n')
8484
file_out.writelines(lines)
8585

0 commit comments

Comments
 (0)