Skip to content

Commit c5ad95f

Browse files
committed
fix bootstrap script in plotting.py
1 parent 9adcaa8 commit c5ad95f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ipyplot/plotting.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -113,8 +113,8 @@ def plot_class_representations(
113113

114114

115115
def _create_tabs_html(images, labels, max_imgs_per_tab, img_width):
116-
html = '<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>' # NOQA E501
117-
html += '<div><ul class="nav nav-pills">'
116+
# html = '<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.2.0/js/bootstrap.min.js"></script>' # NOQA E501
117+
html = '<div><ul class="nav nav-pills">'
118118

119119
unique_labels = np.unique(labels)
120120
tab_ids = [uuid.uuid4() for label in unique_labels]

0 commit comments

Comments
 (0)