Python/data_structures/LinkedList
cclauss d043448fd9
Fix unresolved name: insert_tail()
insert_tail(Head.next, data) --> Head.next.insert_tail(data)

Fixes: $ __flake8 . --count --select=E901,E999,F821,F822,F823 --show-source --statistics__
```
./data_structures/LinkedList/singly_LinkedList.py:14:13: F821 undefined name 'insert_tail'
            insert_tail(Head.next, data)
            ^
1     F821 undefined name 'insert_tail'
```

Also formats the code to be compliant with [PEP8](http://pep8.org).
2018-01-21 08:56:16 +01:00
..
__init__.py Create __init__.py 2016-10-14 17:23:07 +01:00
DoublyLinkedList.py Modernize Python 2 code to get ready for Python 3 2017-11-25 12:41:55 +01:00
singly_LinkedList.py Fix unresolved name: insert_tail() 2018-01-21 08:56:16 +01:00