Skip to content

Commit 64f9662

Browse files
fix: apply ruff formatting to datetime_helpers.py
Co-Authored-By: Aaron <AJ> Steers <[email protected]>
1 parent 43bce33 commit 64f9662

File tree

1 file changed

+8
-3
lines changed

1 file changed

+8
-3
lines changed

airbyte_cdk/utils/datetime_helpers.py

Lines changed: 8 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -144,9 +144,14 @@ def to_datetime(self) -> datetime:
144144
Returns a standard datetime object with the same attributes as this AirbyteDateTime.
145145
"""
146146
return datetime(
147-
self.year, self.month, self.day,
148-
self.hour, self.minute, self.second, self.microsecond,
149-
tzinfo=self.tzinfo
147+
self.year,
148+
self.month,
149+
self.day,
150+
self.hour,
151+
self.minute,
152+
self.second,
153+
self.microsecond,
154+
tzinfo=self.tzinfo,
150155
)
151156

152157
def __str__(self) -> str:

0 commit comments

Comments
 (0)