From e534d06a0825b065bb0aeeba4825621ad0779795 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Kardos?= Date: Mon, 17 Mar 2025 16:54:43 +0100 Subject: [PATCH 1/2] Added kwargs to create_blueprint --- topicwizard/blueprints/app.py | 1 + 1 file changed, 1 insertion(+) diff --git a/topicwizard/blueprints/app.py b/topicwizard/blueprints/app.py index ebda77a..fa56d69 100644 --- a/topicwizard/blueprints/app.py +++ b/topicwizard/blueprints/app.py @@ -32,6 +32,7 @@ def create_blueprint( topic_positions: Optional[np.ndarray] = None, document_positions: Optional[np.ndarray] = None, wordcloud_font_path: Optional[str] = None, + **kwargs, ) -> DashBlueprint: # --------[ Collecting blueprints ]-------- topic_blueprint = ( From 0019e7c38a3d1967ed6b3412d233a56a4d929f9c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A1rton=20Kardos?= Date: Mon, 17 Mar 2025 16:55:07 +0100 Subject: [PATCH 2/2] version bump --- pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index 352ea2a..25ba184 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "topic-wizard" -version = "1.1.3" +version = "1.1.4" description = "Pretty and opinionated topic model visualization in Python." authors = ["Márton Kardos "] license = "MIT"