3
0
Fork 0

fix: add make_str_uuid() to disambiguate what callers want

first step on the way to fixing `make_uuid()` so it always returns a
proper UUID instance
This commit is contained in:
Lance Edgar 2025-12-21 01:17:56 -06:00
parent 4a9e5f4b15
commit a6b31813f7
5 changed files with 103 additions and 46 deletions

View file

@ -321,6 +321,13 @@ Glossary
the real workhorse; each can perform a different function with a
custom arg set. See also :doc:`narr/cli/index`.
uuid
Universally-unique identifier. All built-in :term:`data models
<data model>` have a UUID column for primary key.
Call :meth:`~wuttjamaican.app.AppHandler.make_uuid()` to get a
new UUID.
virtual environment
This term comes from the broader Python world and refers to an
isolated way to install :term:`packages<package>`. See also