From 787765f98625669e705ca976c76f8e2344382821 Mon Sep 17 00:00:00 2001 From: Lance Edgar Date: Tue, 10 Mar 2026 11:16:04 -0500 Subject: [PATCH] fix: make pylint happy --- src/wuttaweb/util.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wuttaweb/util.py b/src/wuttaweb/util.py index a708398..7b97a59 100644 --- a/src/wuttaweb/util.py +++ b/src/wuttaweb/util.py @@ -619,7 +619,7 @@ def prop_is_fk(mapper, prop): # pylint: disable=empty-docstring return False -def make_json_safe(value, key=None, warn=True): +def make_json_safe(value, key=None, warn=True): # pylint: disable=too-many-branches """ Convert a Python value as needed, to ensure it is compatible with :func:`python:json.dumps()`.