Skip to content

Commit

Permalink
remove commented/unused
Browse files Browse the repository at this point in the history
  • Loading branch information
aktech committed Aug 28, 2023
1 parent 7ee0c9f commit 4e2105c
Showing 1 changed file with 0 additions and 21 deletions.
21 changes: 0 additions & 21 deletions jhub_apps/launcher/panel_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -39,24 +39,6 @@ class InputFormWidget:
}


def _get_image_item(name, logo, desc, link="/"):
return {"name": name, "image": logo, "description": desc, "link": link}


# ... [same imports and definitions]

# Define the items list
# items = [
# _get_image_item(logo=LOGO_MAPPING.get("panel"), desc="Panel Desc", link="/"),
# _get_image_item(
# logo=LOGO_MAPPING.get("streamlit"), desc="Streamlit Desc", link="/"
# ),
# _get_image_item(logo=LOGO_MAPPING.get("bokeh"), desc="Bokeh Desc", link="/"),
# _get_image_item(logo=LOGO_MAPPING.get("voila"), desc="Voila Desc", link="/"),
# _get_image_item(logo=LOGO_MAPPING.get("plotly"), desc="Plotly Desc", link="/"),
# ]


@dataclass
class App:
name: str
Expand All @@ -66,9 +48,6 @@ class App:
url: str
logo: str

def __str__(self):
return f"App_{self.name}"


def _create_items():
hclient = HubClient()
Expand Down

0 comments on commit 4e2105c

Please sign in to comment.