We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 59d34b3 + 2493090 commit ddbbcdbCopy full SHA for ddbbcdb
plugins/declaratie.py
@@ -184,7 +184,7 @@ def runascash(self, text):
184
return True
185
try:
186
value = float(text)
187
- if 0 < value < 5000:
+ if 0 <= value < 5000:
188
if value > (self.value - self.asbar):
189
return self.askcash(
190
"E %.2f is larger than E %.2f ; "
@@ -194,7 +194,7 @@ def runascash(self, text):
194
if (self.ascash + self.asbar) == self.value:
195
return self.final()
196
return self.askbank("")
197
- return self.askcash("Not between 0.01 and 4999.99; ")
+ return self.askcash("Not between 0 and 4999.99; ")
198
except:
199
traceback.print_exc()
200
return self.askcash("")
0 commit comments