mirror of
https://0xacab.org/anarsec/anarsec.guide.git
synced 2025-06-07 06:12:46 -04:00
7 lines
224 B
Python
7 lines
224 B
Python
from toml import TomlDecoder as TomlDecoder, TomlEncoder as TomlEncoder
|
|
|
|
class TomlOrderedDecoder(TomlDecoder):
|
|
def __init__(self) -> None: ...
|
|
|
|
class TomlOrderedEncoder(TomlEncoder):
|
|
def __init__(self) -> None: ...
|