fix: ruff file formatting based on config file pyproject (#7082)
This commit is contained in:
parent
75a11ba31a
commit
cfac8ce350
44 changed files with 319 additions and 231 deletions
|
|
@ -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}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue