Skip to content

Commit 0b1b3de

Browse files
Formatting
It is part of PR #149.
1 parent 1d75568 commit 0b1b3de

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

testgres/node.py

+5-7
Original file line numberDiff line numberDiff line change
@@ -739,13 +739,11 @@ def start(self, params=[], wait=True):
739739
if self.is_started:
740740
return self
741741

742-
_params = [
743-
self._get_bin_path("pg_ctl"),
744-
"-D", self.data_dir,
745-
"-l", self.pg_log_file,
746-
"-w" if wait else '-W', # --wait or --no-wait
747-
"start"
748-
] + params # yapf: disable
742+
_params = [self._get_bin_path("pg_ctl"),
743+
"-D", self.data_dir,
744+
"-l", self.pg_log_file,
745+
"-w" if wait else '-W', # --wait or --no-wait
746+
"start"] + params # yapf: disable
749747

750748
startup_retries = 5
751749
while True:

0 commit comments

Comments
 (0)