You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug
running the test throws an error for line self.values = capacity * [None]
TypeError: cant multiply sequence by non-int of type ' NoneType'
That's a pity, because I really like this TDD cource!
Running on Windows 10 with python version 3.7.3
The text was updated successfully, but these errors were encountered:
@EmersonSchindex There's not enough information in this issue description to reproduce the problem. However, the error message indicates that the HashTable class must have been instantiated with an unexpected None passed as an argument:
>>>HashTable(None)
Traceback (mostrecentcalllast):
File"<stdin>", line1, in<module>File"<stdin>", line3, in__init__TypeError: can't multiply sequence by non-int of type 'NoneType'
All the implemented tests pass on Python 3.7.3 upon cloning the repository:
source: hashtable.py in 01_define_a_custom_hashtable_class
Describe the bug
running the test throws an error for line self.values = capacity * [None]
TypeError: cant multiply sequence by non-int of type ' NoneType'
That's a pity, because I really like this TDD cource!
Running on Windows 10 with python version 3.7.3
The text was updated successfully, but these errors were encountered: