From 8d6cf4b85748fd474fb50156296ef44d5cf1eeea Mon Sep 17 00:00:00 2001 From: 19thyneb Date: Thu, 25 Mar 2021 19:55:05 -0700 Subject: [PATCH] Removed unnecessary __repr__() function --- lux/core/frame.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/lux/core/frame.py b/lux/core/frame.py index 39d65c92..d203b4ab 100644 --- a/lux/core/frame.py +++ b/lux/core/frame.py @@ -337,10 +337,6 @@ def current_vis(self): def current_vis(self, current_vis: Dict): self._current_vis = current_vis - def __repr__(self): - # TODO: _repr_ gets called from _repr_html, need to get rid of this call - return "" - def _append_rec(self, rec_infolist, recommendations: Dict): if recommendations["collection"] is not None and len(recommendations["collection"]) > 0: rec_infolist.append(recommendations)