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: Nikita Sobolev <mail@sobolevn.me>
  • Loading branch information
AlexWaygood and sobolevn authored Jul 12, 2023
commit 36df87ac7dd28acd7972a57a7603e65bc5cd7aca
2 changes: 1 addition & 1 deletion Tools/clinic/clinic.py
Original file line number Diff line number Diff line change
Expand Up @@ -1964,7 +1964,7 @@ class Destination:

args: dc.InitVar[tuple[str, ...]] = ()

def __post_init__(self, args: tuple[str, ...] = ()) -> None:
def __post_init__(self, args: tuple[str, ...]) -> None:
valid_types = ('buffer', 'file', 'suppress')
if self.type not in valid_types:
fail(
Expand Down