fix: round bolme2_hisse1 quarterly average to nearest integer
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
This commit is contained in:
parent
ed92176ce4
commit
86b219a31e
|
|
@ -229,7 +229,7 @@ def get_bolme2_hisse1_data(company, year, quarter):
|
|||
|
||||
monthly_counts.append(count)
|
||||
|
||||
avg = round(sum(monthly_counts) / 3, 2) if monthly_counts else 0
|
||||
avg = round(sum(monthly_counts) / 3) if monthly_counts else 0
|
||||
|
||||
return {
|
||||
"İşçilərin ümumi sayı": {
|
||||
|
|
|
|||
Loading…
Reference in New Issue