File tree 2 files changed +4
-4
lines changed
2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -1077,8 +1077,8 @@ class set(MutableSet[_T], Generic[_T]):
1077
1077
def __iand__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1078
1078
def __or__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1079
1079
def __ior__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1080
- def __sub__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1081
- def __isub__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1080
+ def __sub__ (self , s : AbstractSet [_T ]) -> Set [_T ]: ...
1081
+ def __isub__ (self , s : AbstractSet [_T ]) -> Set [_T ]: ...
1082
1082
def __xor__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1083
1083
def __ixor__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1084
1084
def __le__ (self , s : AbstractSet [object ]) -> bool : ...
Original file line number Diff line number Diff line change @@ -1077,8 +1077,8 @@ class set(MutableSet[_T], Generic[_T]):
1077
1077
def __iand__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1078
1078
def __or__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1079
1079
def __ior__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1080
- def __sub__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1081
- def __isub__ (self , s : AbstractSet [object ]) -> Set [_T ]: ...
1080
+ def __sub__ (self , s : AbstractSet [_T ]) -> Set [_T ]: ...
1081
+ def __isub__ (self , s : AbstractSet [_T ]) -> Set [_T ]: ...
1082
1082
def __xor__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1083
1083
def __ixor__ (self , s : AbstractSet [_S ]) -> Set [Union [_T , _S ]]: ...
1084
1084
def __le__ (self , s : AbstractSet [object ]) -> bool : ...
You can’t perform that action at this time.
0 commit comments