File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -334,11 +334,6 @@ def minify(self, json_text: str) -> str:
334334 result = self ._dotnet_instance .Minify (String (json_text ))
335335 return str (result )
336336
337- def serialize (self , obj : object ) -> str :
338- """Serialize a Python object to JSON using the underlying .NET implementation."""
339- result = self ._dotnet_instance .Serialize (obj )
340- return str (result )
341-
342337 @property
343338 def string_length_func (self ) -> Callable [[str ], int ]:
344339 """Get current string length function."""
Original file line number Diff line number Diff line change @@ -43,7 +43,6 @@ class Formatter:
4343 def options (self , value : FracturedJsonOptions ) -> None : ...
4444 def reformat (self , json_text : str ) -> str : ...
4545 def minify (self , json_text : str ) -> str : ...
46- def serialize (self , obj : Any ) -> str : ...
4746 @property
4847 def string_length_func (self ) -> Callable [[str ], int ]: ...
4948 @string_length_func .setter
You can’t perform that action at this time.
0 commit comments