Skip to content

Commit

Permalink
fix: adds ruff ignore rules for long lines
Browse files Browse the repository at this point in the history
  • Loading branch information
Ramir Mesquita committed Dec 11, 2024
1 parent 6e3483b commit 588d2a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/apps/answers/crud/answers.py
Original file line number Diff line number Diff line change
Expand Up @@ -238,9 +238,9 @@ async def get_respondents_submit_dates(
case(
(
AnswerSchema.flow_history_id.isnot(None),
AnswerSchema.id_from_history_id(AnswerSchema.flow_history_id) == str(filters.activity_or_flow_id),
AnswerSchema.id_from_history_id(AnswerSchema.flow_history_id) == str(filters.activity_or_flow_id), # noqa: E501
),
else_=AnswerSchema.id_from_history_id(AnswerSchema.activity_history_id)
else_=AnswerSchema.id_from_history_id(AnswerSchema.activity_history_id) # noqa: E501
== str(filters.activity_or_flow_id),
)
)
Expand Down

0 comments on commit 588d2a7

Please sign in to comment.