fix: Remove strip

This commit is contained in:
Deepesh Garg
2020-05-16 18:07:03 +05:30
committed by Deepesh Garg
parent 5befddca39
commit 65fb3f2c48

View File

@@ -58,7 +58,7 @@ def get_tax_withholding_details(tax_withholding_category, fiscal_year, company):
"rate": tax_rate_detail.tax_withholding_rate,
"threshold": tax_rate_detail.single_threshold,
"cumulative_threshold": tax_rate_detail.cumulative_threshold,
"description": tax_withholding.category_name.strip() if tax_withholding.category_name.strip() else tax_withholding_category
"description": tax_withholding.category_name if tax_withholding.category_name else tax_withholding_category
})
def get_tax_withholding_rates(tax_withholding, fiscal_year):