pythonprofilers / memory_profiler

Monitor Memory usage of Python code
http://pypi.python.org/pypi/memory_profiler
Other
4.39k stars 380 forks source link

Fixed write bug #314

Closed vijay120 closed 3 years ago

vijay120 commented 3 years ago

This bug fixes this issue: https://github.com/pythonprofilers/memory_profiler/issues/240

The main issue was the code was trying to enumerate a None object, so checking for that fixed the issue.

fabianp commented 3 years ago

Thanks!