Skip to content

Commit

Permalink
Fix Python syntax error
Browse files Browse the repository at this point in the history
Reported by CodeQL: this is a dict, colons required as separator.
  • Loading branch information
tautschnig committed Jun 18, 2024
1 parent a8b8f0f commit 1c42780
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -55,7 +55,7 @@ def parse_arguments():
def pandoc(path, pandoc_write, pandoc_wrap, pandoc_filter=None):
args = {
'--write': pandoc_write,
'--wrap', pandoc_wrap
'--wrap': pandoc_wrap
}
if pandoc_filter:
args['--filter'] = Path(pandoc_filter).resolve()
Expand Down

0 comments on commit 1c42780

Please sign in to comment.