From e16c4bb94e7c35d3ffe4cbb1cf8e471aa0cbc497 Mon Sep 17 00:00:00 2001 From: John Duggan Date: Wed, 21 Jan 2026 09:42:15 -0500 Subject: [PATCH] Remove old _download method --- examples/downloading_files/view.py | 4 ---- 1 file changed, 4 deletions(-) diff --git a/examples/downloading_files/view.py b/examples/downloading_files/view.py index f8b8fd7..b387195 100644 --- a/examples/downloading_files/view.py +++ b/examples/downloading_files/view.py @@ -1,13 +1,11 @@ """View for file download example.""" import os -from typing import Optional from nova.mvvm.trame_binding import TrameBinding from nova.trame import ThemedApp from nova.trame.view.components import DataSelector from nova.trame.view.layouts import VBoxLayout -from trame.widgets import client from trame.widgets import vuetify3 as vuetify from .model import Model @@ -28,8 +26,6 @@ def __init__(self) -> None: # uninitialized in the UI via v_if statements. self.view_model.update_form_data() - self._download: Optional[client.JSEval] = None - self.create_ui() def create_ui(self) -> None: