From 00fa8074978f7ccf3b26d0972ad944a981edbfae Mon Sep 17 00:00:00 2001 From: Gene Dan Date: Mon, 27 Jan 2025 20:18:20 -0600 Subject: [PATCH] FEAT: Update demo template to set sample db. --- faslr/demos/template.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/faslr/demos/template.py b/faslr/demos/template.py index 792cea2..cbf5399 100644 --- a/faslr/demos/template.py +++ b/faslr/demos/template.py @@ -3,10 +3,14 @@ """ import sys +from faslr.demos.sample_db import set_sample_db + from PyQt6.QtWidgets import ( QApplication ) +set_sample_db() + app = QApplication(sys.argv) app.exec() \ No newline at end of file