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

Commit a1b9ac5

Browse files
teraampgithub-actions[bot]
authored andcommitted
style fixes by ruff
1 parent c36fc09 commit a1b9ac5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

data_diff/databases/postgresql.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
FractionalType,
1818
Boolean,
1919
Date,
20-
Time
20+
Time,
2121
)
2222
from data_diff.databases.base import BaseDialect, ThreadedDatabase, import_helper, ConnectError
2323
from data_diff.databases.base import (
@@ -114,7 +114,7 @@ def normalize_timestamp(self, value: str, coltype: TemporalType) -> str:
114114
def _add_padding(coltype: TemporalType, timestamp6: str):
115115
return f"RPAD(LEFT({timestamp6}, {TIMESTAMP_PRECISION_POS+coltype.precision}), {TIMESTAMP_PRECISION_POS+6}, '0')"
116116

117-
if True: #try:
117+
if True: # try:
118118
is_date = coltype.is_date
119119
is_time = coltype.is_time
120120
else:

0 commit comments

Comments
 (0)