Skip to content

Commit e0ba161

Browse files
committed
Fix trailing whitespace in tools.py
- Removed trailing whitespace from lines 100-101 - Fixes flake8 linting errors W291 - Assisted by cursor
1 parent 3f5f2b1 commit e0ba161

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/tools.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -97,8 +97,8 @@ async def list_jira_issues(
9797
# Add timeframe filter - check if any of the dates are within the specified timeframe
9898
if timeframe > 0:
9999
timeframe_condition = f"""(
100-
CREATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
101-
OR UPDATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
100+
CREATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
101+
OR UPDATED >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
102102
OR RESOLUTIONDATE >= CURRENT_DATE() - INTERVAL '{timeframe} DAYS'
103103
)"""
104104
sql_conditions.append(timeframe_condition)

0 commit comments

Comments
 (0)