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
The cprofile.create_stats() might return {}
When self.stats = {}
"if not self.stats:" will be True and exception triggered.
Suggest changed this line to:
"if self.stats is None:"