Skip to content

Commit 0db5624

Browse files
committed
FIX: raisee not implimented
1 parent 77aca09 commit 0db5624

File tree

2 files changed

+2
-3
lines changed

2 files changed

+2
-3
lines changed

lib/matplotlib/layout_engine.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,13 +52,13 @@ def __init__(self, fig, **kwargs):
5252
self.adjust_compatible = False
5353

5454
def set_info(self, **kwargs):
55-
pass
55+
raise(NotImplementedError)
5656

5757
def get_info(self):
5858
return self._info
5959

6060
def execute(self):
61-
pass
61+
raise(NotImplementedError)
6262

6363

6464
class tight_layout_engine(LayoutEngine):

lib/matplotlib/pyplot.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1273,7 +1273,6 @@ def subplot(*args, **kwargs):
12731273
if other_ax == ax:
12741274
continue
12751275
if bbox.fully_overlaps(other_ax.bbox):
1276-
print('Deleting!', other_ax, bbox.extents, other_ax.bbox.extents)
12771276
axes_to_delete.append(other_ax)
12781277
for ax_to_del in axes_to_delete:
12791278
delaxes(ax_to_del)

0 commit comments

Comments
 (0)