From d832074bafb1b2036906186c97a79f6369e87c41 Mon Sep 17 00:00:00 2001 From: Eric Hanson Date: Fri, 15 Dec 2023 15:48:32 -0500 Subject: [PATCH] Update _transform method docstring --- transmogrifier/sources/transformer.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/transmogrifier/sources/transformer.py b/transmogrifier/sources/transformer.py index 1af9293..d45e8ab 100644 --- a/transmogrifier/sources/transformer.py +++ b/transmogrifier/sources/transformer.py @@ -229,7 +229,8 @@ def _transform( self, source_record: dict[str, JSON] | Tag ) -> Optional[TimdexRecord]: """ - Private method called by Transform a source record into a TIMDEX record. + Private method called for both XML and JSON transformations, where + all logic is shared except source_record type. May not be overridden.