Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Update Tools/clinic/clinic.py
Co-authored-by: Alex Waygood <Alex.Waygood@Gmail.com>
  • Loading branch information
erlend-aasland and AlexWaygood authored May 20, 2023
commit d5fa591548276e89e0c291578953f16e45529328
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -4343,7 +4343,7 @@ def directive_output(
def directive_dump(self, name: str) -> None:
self.block.output.append(self.clinic.get_destination(name).dump())

def directive_printout(self, *args) -> None:
def directive_printout(self, *args: str) -> None:
self.block.output.append(' '.join(args))
self.block.output.append('\n')

Expand Down