Skip to content

Commit acf02f6

Browse files
fix: remove trailing whitespace to pass Ruff format check
Co-Authored-By: unknown <>
1 parent 72f8169 commit acf02f6

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

airbyte_cdk/sources/declarative/datetime/datetime_parser.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,13 +23,13 @@ def parse(self, date: Union[str, int], format: str) -> datetime.datetime:
2323
raise ValueError(
2424
f"Cannot parse None as a datetime. Expected a string, integer, or float representing a timestamp."
2525
)
26-
26+
2727
if isinstance(date, (list, dict)):
2828
raise TypeError(
2929
f"Cannot parse {type(date).__name__} as a datetime. "
3030
f"Expected a string, integer, or float representing a timestamp, but got: {date}"
3131
)
32-
32+
3333
# "%s" is a valid (but unreliable) directive for formatting, but not for parsing
3434
# It is defined as
3535
# The number of seconds since the Epoch, 1970-01-01 00:00:00+0000 (UTC). https://man7.org/linux/man-pages/man3/strptime.3.html

0 commit comments

Comments
 (0)