Fix append
This commit is contained in:
parent
995396c775
commit
9b66297cc0
@ -712,7 +712,7 @@ class IFreqaiModel(ABC):
|
|||||||
key=lambda k: k[1]['trained_timestamp'])
|
key=lambda k: k[1]['trained_timestamp'])
|
||||||
for pair in pair_dict_sorted:
|
for pair in pair_dict_sorted:
|
||||||
if pair[0] in current_pairlist:
|
if pair[0] in current_pairlist:
|
||||||
best_queue.appendright(pair[0])
|
best_queue.append(pair[0])
|
||||||
for pair in current_pairlist:
|
for pair in current_pairlist:
|
||||||
if pair not in best_queue:
|
if pair not in best_queue:
|
||||||
best_queue.appendleft(pair)
|
best_queue.appendleft(pair)
|
||||||
|
Loading…
Reference in New Issue
Block a user