insidesherpa / JPMC-tech-task-1

56 stars 352 forks source link

Error in server.py file occured. In python 2.7.2 version we were using next() function but it is not used in python 3.7.2. Help me with this #109

Open Akshaysharma101 opened 4 years ago

ankmish commented 4 years ago

.next() is not supported on python3.x. Change .next() to .__next__(). Example: self._data_1.__next__() .

Hope this will resolve your problem.

Akshaysharma101 commented 4 years ago

I have resolved the problem yet. Thank you