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

Skip to content

Commit 4241471

Browse files
committed
reformat code
1 parent d9473c6 commit 4241471

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

testgres/backup.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,8 @@ def __init__(self,
5656
try:
5757
xlog_method = XLogMethod(xlog_method)
5858
except ValueError:
59-
raise BackupException('Invalid xlog_method "{}"'.format(xlog_method))
59+
raise BackupException(
60+
'Invalid xlog_method "{}"'.format(xlog_method))
6061

6162
# Set default arguments
6263
username = username or default_username()

testgres/connection.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@
1717

1818
from .exceptions import QueryException
1919

20-
2120
# export these exceptions
2221
InternalError = pglib.InternalError
2322
ProgrammingError = pglib.ProgrammingError

testgres/utils.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@
1414
from .config import testgres_config
1515
from .exceptions import ExecUtilException
1616

17-
1817
# rows returned by PG_CONFIG
1918
_pg_config_data = {}
2019

0 commit comments

Comments
 (0)