We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 50bb81f commit b4c5751Copy full SHA for b4c5751
airbyte_cdk/utils/datetime_helpers.py
@@ -396,6 +396,7 @@ def ab_datetime_parse(
396
"""
397
# Handle numeric values as Unix timestamps (UTC)
398
if isinstance(dt_str, int):
399
+ timestamp: int = dt_str
400
if timestamp < 0:
401
raise ValueError("Timestamp cannot be negative")
402
if len(str(abs(timestamp))) > 10:
0 commit comments