Skip to content

Commit

Permalink
Using correct property
Browse files Browse the repository at this point in the history
  • Loading branch information
KingAkeem committed Oct 20, 2018
1 parent 3265e1b commit 5832d1a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/link_io.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ def display_children(root):
Args:
root (LinkNode): root of children to be displayed
"""
sucess_msg = color(f'Links Found - {len(root.children)}', 'green')
sucess_msg = color(f'Links Found - {len(root.links)}', 'green')
print(sucess_msg + '\n' + '---------------------------------')
multi_thread(root.children, LinkIO.display)
multi_thread(root.links, LinkIO.display)

@staticmethod
def read(link, *, response=False, show_msg=False, headers=None, schemes=None):
Expand Down

0 comments on commit 5832d1a

Please sign in to comment.