Treelib typo

This commit is contained in:
Pavel 'LEdoian' Turinsky 2020-03-18 23:02:14 +01:00
parent 95f3b9b120
commit 91c2490d01

View file

@ -86,7 +86,7 @@ def right_brothers(node):
def all_brothers(node): def all_brothers(node):
# Najdeme prvního bratra # Najdeme prvního bratra
fb = first_brother(node) fb = first_brother(node)
marb = me_and_all_brothers(fb) marb = me_and_right_brothers(fb)
for cur in marb: for cur in marb:
yield cur yield cur