refactor(remarshal)!: put format args first

BREAKING CHANGE: change the order of the arguments to `remarshal`.
This commit is contained in:
D. Bohdan 2023-09-13 11:31:59 +00:00
parent fe525e8051
commit 39de8cda6e
2 changed files with 6 additions and 6 deletions

View File

@ -659,10 +659,10 @@ def encode(
def run(argv: List[str]) -> None:
args = _parse_command_line(argv)
remarshal(
args.input,
args.output,
args.input_format,
args.output_format,
args.input,
args.output,
json_indent=args.json_indent,
max_values=args.max_values,
ordered=args.ordered,
@ -674,10 +674,10 @@ def run(argv: List[str]) -> None:
def remarshal(
input: Path | str,
output: Path | str,
input_format: str,
output_format: str,
input: Path | str,
output: Path | str,
*,
json_indent: Union[int, None] = None,
max_values: int = DEFAULT_MAX_VALUES,

View File

@ -96,10 +96,10 @@ class TestRemarshal(unittest.TestCase):
) -> bytes:
output_filename = self.temp_filename()
remarshal.remarshal(
data_file_path(input),
output_filename,
input_format,
output_format,
data_file_path(input),
output_filename,
json_indent=json_indent,
ordered=ordered,
stringify=stringify,