Renamed my JSONEncoder something useful

This commit is contained in:
Jamie Hardt
2023-11-04 11:21:59 -07:00
parent c30f675cec
commit c3af30dc6a

View File

@@ -32,7 +32,7 @@ from ptulsconv.pdf.continuity import output_report as output_continuity
from json import JSONEncoder from json import JSONEncoder
class MyEncoder(JSONEncoder): class FractionEncoder(JSONEncoder):
""" """
A subclass of :class:`JSONEncoder` which encodes :class:`Fraction` objects A subclass of :class:`JSONEncoder` which encodes :class:`Fraction` objects
as a dict. as a dict.
@@ -193,7 +193,7 @@ def convert(major_mode, input_file=None, output=sys.stdout, warnings=True):
session_tc_format = session.header.timecode_format session_tc_format = session.header.timecode_format
if major_mode == 'raw': if major_mode == 'raw':
output.write(MyEncoder().encode(session)) output.write(FractionEncoder().encode(session))
else: else:
compiler = TagCompiler() compiler = TagCompiler()
@@ -201,7 +201,7 @@ def convert(major_mode, input_file=None, output=sys.stdout, warnings=True):
compiled_events = list(compiler.compile_events()) compiled_events = list(compiler.compile_events())
if major_mode == 'tagged': if major_mode == 'tagged':
output.write(MyEncoder().encode(compiled_events)) output.write(FractionEncoder().encode(compiled_events))
elif major_mode == 'doc': elif major_mode == 'doc':
generic_events, adr_lines = make_entities(compiled_events) generic_events, adr_lines = make_entities(compiled_events)