Skip to content

Commit 275b2d4

Browse files
committed
fixes
1 parent 5c62d9f commit 275b2d4

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/query_farm_server_base/duckdb_serialized_expression.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ def decode_bitstring(data: bytes) -> str:
4545

4646

4747
def interpret_time(value: int) -> str:
48-
t = timedelta(milliseconds=value)
48+
t = timedelta(microseconds=value)
4949
hours, remainder = divmod(t.seconds, 3600)
5050
minutes, seconds = divmod(remainder, 60)
5151

0 commit comments

Comments
 (0)