fix: ruff file formatting based on config file pyproject (#7082)

This commit is contained in:
sriram veeraghanta 2025-05-19 17:34:46 +05:30 committed by GitHub
parent 75a11ba31a
commit cfac8ce350
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
44 changed files with 319 additions and 231 deletions

View file

@ -182,9 +182,7 @@ def burndown_plot(queryset, slug, project_id, plot_type, cycle_id=None, module_i
# Get all dates between the two dates
date_range = [
(queryset.start_date + timedelta(days=x))
for x in range(
(queryset.target_date - queryset.start_date).days + 1
)
for x in range((queryset.target_date - queryset.start_date).days + 1)
]
chart_data = {str(date): 0 for date in date_range}