From ea1a08f664c78bef777ea999b48428f3491a2039 Mon Sep 17 00:00:00 2001 From: Bryce Willey Date: Mon, 8 Dec 2025 15:56:42 -0500 Subject: [PATCH] Use code block for examples with code in docstrings Shows up better on the documentation site --- docassemble/AssemblyLine/sessions.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docassemble/AssemblyLine/sessions.py b/docassemble/AssemblyLine/sessions.py index 16138c5c..83c40fe1 100644 --- a/docassemble/AssemblyLine/sessions.py +++ b/docassemble/AssemblyLine/sessions.py @@ -518,6 +518,7 @@ def find_matching_sessions( List[Dict[str, Any]]: A list of saved sessions for the specified filename that match the search keyword and metadata filters Example: + ```python matching_sessions = find_matching_sessions( "smith", user_id="all", @@ -529,9 +530,8 @@ def find_matching_sessions( } ) - Example: {"owner": ("samantha", "ILIKE", None), "age": (30, ">=", "int"), "status": ("%complete%", "LIKE", None)} - + ``` """ if not metadata_column_names: metadata_column_names = {"title", "auto_title", "description"}