Skip to content
This repository was archived by the owner on May 17, 2024. It is now read-only.

Commit 6f6b887

Browse files
vvkhgithub-actions[bot]
authored andcommitted
style fixes by ruff
1 parent 781d2ea commit 6f6b887

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

data_diff/databases/postgresql.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -190,8 +190,7 @@ def select_table_schema(self, path: DbPath) -> str:
190190
if database:
191191
info_schema_path.insert(0, database)
192192

193-
return (
194-
f"""SELECT column_name, data_type, datetime_precision,
193+
return f"""SELECT column_name, data_type, datetime_precision,
195194
-- see comment for DEFAULT_NUMERIC_PRECISION
196195
CASE
197196
WHEN data_type = 'numeric'
@@ -206,7 +205,6 @@ def select_table_schema(self, path: DbPath) -> str:
206205
FROM {'.'.join(info_schema_path)}
207206
WHERE table_name = '{table}' AND table_schema = '{schema}'
208207
"""
209-
)
210208

211209
def select_table_unique_columns(self, path: DbPath) -> str:
212210
database, schema, table = self._normalize_table_path(path)

0 commit comments

Comments
 (0)