Skip to content

Commit

Permalink
Adjust line length to pass lint tests
Browse files Browse the repository at this point in the history
  • Loading branch information
kurtmckee authored Sep 6, 2024
1 parent 07587cb commit f3f33f7
Showing 1 changed file with 3 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,5 +37,7 @@ def process_bind_param(self, impl, value, dialect):

def process_result_value(self, impl, value, dialect):
if value:
return pendulum.DateTime.instance(value.replace(tzinfo=datetime.timezone.utc))
return pendulum.DateTime.instance(
value.replace(tzinfo=datetime.timezone.utc)
)
return value

0 comments on commit f3f33f7

Please sign in to comment.