Skip to content
Snippets Groups Projects
Commit 45959cba authored by sandeepsajan0's avatar sandeepsajan0
Browse files

Add whitespaces around arithmetic operators

parent 8bc0716a
No related branches found
No related tags found
No related merge requests found
......@@ -38,7 +38,7 @@ class ValueBlock(ApplicationSingleIncludeFieldBlock):
description = 'The value of the project'
max_digits = 20
decimal_digits = 2
widget = forms.NumberInput(attrs={'min': 0, 'max': ((pow(10, max_digits)-1)/pow(10, decimal_digits))})
widget = forms.NumberInput(attrs={'min': 0, 'max': ((pow(10, max_digits) - 1) / pow(10, decimal_digits))})
class Meta:
label = _('Requested amount')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment