Skip to content

Commit

Permalink
Einzelupdate funk.py
Browse files Browse the repository at this point in the history
  • Loading branch information
rols1 committed Apr 3, 2023
1 parent 74b5dee commit 1437533
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion resources/lib/funk.py
Original file line number Diff line number Diff line change
Expand Up @@ -937,7 +937,7 @@ def get_forms(distrib, prev_set=''):
prev_res = prev_res.split('x')[0]
PLog("res: %s, prev_res: %s" % (res, prev_res))
try:
if int(res) >= int(prev_res):
if int(prev_res) >= int(res):# Sort. absteigend!
PLog("take_res: %s, form: %s" % (res, form))
return form
except:
Expand Down

0 comments on commit 1437533

Please sign in to comment.