From 58cef0c9c2ad77acdf9dc05b94e3b5c239c25aff Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 23 Dec 2025 17:18:32 -0600 Subject: [PATCH] docs: tweak quickstart example --- docs/narr/install/quickstart.rst | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/docs/narr/install/quickstart.rst b/docs/narr/install/quickstart.rst index 4679f88..06fea07 100644 --- a/docs/narr/install/quickstart.rst +++ b/docs/narr/install/quickstart.rst @@ -116,8 +116,7 @@ invoke other app/handler logic:: # invoke secondary handler to make new user account auth = app.get_auth_handler() user = auth.make_user(session=session, username='barney') - - # commit changes to DB + assert isinstance(user, model.User) session.add(user) session.commit()