From 64d1493568e105d70d0cd9ef79993f1a3783a3f5 Mon Sep 17 00:00:00 2001 From: Amin Alaee Date: Thu, 23 Mar 2023 11:48:58 +0100 Subject: [PATCH] Update UUID is_safe default --- stdlib/uuid.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/stdlib/uuid.pyi b/stdlib/uuid.pyi index 249257783626..594da9ed34b3 100644 --- a/stdlib/uuid.pyi +++ b/stdlib/uuid.pyi @@ -23,7 +23,7 @@ class UUID: int: _Int | None = None, version: _Int | None = None, *, - is_safe: SafeUUID = ..., + is_safe: SafeUUID = SafeUUID.unknown, ) -> None: ... @property def is_safe(self) -> SafeUUID: ...