mirror of
https://github.com/morpheus65535/bazarr
synced 2025-02-22 05:51:10 +00:00
7 lines
No EOL
293 B
Python
7 lines
No EOL
293 B
Python
from collections import OrderedDict
|
|
from.import TomlEncoder
|
|
from.import TomlDecoder
|
|
class TomlOrderedDecoder(TomlDecoder):
|
|
def __init__(A):super(A.__class__,A).__init__(_dict=OrderedDict)
|
|
class TomlOrderedEncoder(TomlEncoder):
|
|
def __init__(A):super(A.__class__,A).__init__(_dict=OrderedDict) |