Skip to content

Commit aa0d0d1

Browse files
fix typos in uiid (#1151)
From #1148
1 parent a7f87bb commit aa0d0d1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

stdlib/2and3/uuid.pyi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -69,10 +69,10 @@ class UUID:
6969
def get_urn(self) -> str: ...
7070
def get_variant(self) -> str: ...
7171
def get_version(self) -> Optional[_Int]: ...
72-
def __cmp__(self, other: Any) -> int: ...
72+
def __cmp__(self, other: Any) -> _Int: ...
7373

7474
def getnode() -> int: ...
75-
def uuid1(node: Optional[int] = ..., clock_seq: Optional[int] = ...) -> UUID: ...
75+
def uuid1(node: Optional[_Int] = ..., clock_seq: Optional[_Int] = ...) -> UUID: ...
7676
def uuid3(namespace: UUID, name: str) -> UUID: ...
7777
def uuid4() -> UUID: ...
7878
def uuid5(namespace: UUID, name: str) -> UUID: ...

0 commit comments

Comments
 (0)