Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
85 changes: 0 additions & 85 deletions google/colab/_generate_with_variable.py

This file was deleted.

4 changes: 0 additions & 4 deletions google/colab/_quickchart_hint_button.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,6 @@
import uuid as _uuid
import weakref as _weakref

from google.colab import _generate_with_variable
from google.colab import _interactive_table_hint_button
from google.colab import _quickchart
from google.colab import output
Expand All @@ -27,7 +26,6 @@

_output_callbacks = {}
_MAX_CHART_INSTANCES = 4
_ENABLE_GENERATE = False
_QUICKCHART_BUTTON_MIN_ROW_COUNT = 2 # Min # rows to enable quickchart button.

_ICON_SVG = textwrap.dedent("""
Expand Down Expand Up @@ -261,8 +259,6 @@ def _df_formatter_with_hint_buttons(df):
buttons = []
if len(df) >= _QUICKCHART_BUTTON_MIN_ROW_COUNT:
buttons.append(register_df_and_get_html(df))
if _ENABLE_GENERATE:
buttons.append(_generate_with_variable.get_html(df))
# pylint: disable=protected-access
html = _interactive_table_hint_button._df_formatter_with_interactive_hint(
df, buttons
Expand Down