Skip to content

Commit

Permalink
Fix matching destruction
Browse files Browse the repository at this point in the history
  • Loading branch information
kharus committed Jan 20, 2025
1 parent 5868483 commit 4a0af33
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ async def pandoc_md_to_output(

if await md_file.exists():
match pandoc_output:
case {"file_extension": file_extension, "extra_args": extra_args}:
case PandocOutput(file_extension = file_extension, extra_args = extra_args):
outputpath: anyio.Path = uuid_ss_folder_path / file_extension
await outputpath.mkdir(parents=True, exist_ok=True)

Expand Down

0 comments on commit 4a0af33

Please sign in to comment.