Thanks to visit codestin.com
Credit goes to github.com

Skip to content

PostgresNode_Base is added #222

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Formatting
  • Loading branch information
dmitry-lipetsk committed Mar 17, 2025
commit bf28a1a5a530ff932e7d507cf951fba3d70bb445
8 changes: 5 additions & 3 deletions testgres/node_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,9 +116,11 @@ def __getattr__(self, name):
return getattr(self.process, name)

def __repr__(self):
return '{}(ptype={}, process={})'.format(self.__class__.__name__,
str(self.ptype),
repr(self.process))
return '{}(ptype={}, process={})'.format(
self.__class__.__name__,
str(self.ptype),
repr(self.process)
)


class PostgresNode_Base(object):
Expand Down