Skip to content

Commit afee4a5

Browse files
[FIX] formatting (flake8)
1 parent ecd5427 commit afee4a5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

‎testgres/node.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -434,7 +434,7 @@ def source_walsender(self):
434434
if self.master is None:
435435
raise TestgresException("Node doesn't have a master")
436436

437-
assert type(self.master) == PostgresNode
437+
assert type(self.master) == PostgresNode # noqa: E721
438438

439439
# master should be on the same host
440440
assert self.master.host == self.host

‎tests/test_testgres_common.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -348,7 +348,7 @@ def LOCAL__check_auxiliary_pids__multiple_attempts(
348348
assert (con.pid > 0)
349349

350350
with master.replicate().start() as replica:
351-
assert type(replica) == PostgresNode
351+
assert type(replica) == PostgresNode # noqa: E721
352352

353353
# test __str__ method
354354
str(master.child_processes[0])

0 commit comments

Comments
 (0)