Skip to content

Commit c5f58b7

Browse files
committed
fix stubtest issue post-merge
1 parent a55bd2e commit c5f58b7

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

.github/workflows/ci.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -194,7 +194,6 @@ jobs:
194194
if: steps.cache-py.outputs.cache-hit != 'true'
195195

196196
- run: pip install .
197-
if: steps.cache-py.outputs.cache-hit != 'true'
198197

199198
- run: pip freeze
200199

python/pydantic_core/_pydantic_core.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@ class Some(Generic[_T]):
5151
@property
5252
def value(self) -> _T: ...
5353
@classmethod
54-
def __class_getitem__(cls, item: Any) -> Type[Self]: ...
54+
def __class_getitem__(cls, item: Any, /) -> Type[Self]: ...
5555

5656
@final
5757
class SchemaValidator:

0 commit comments

Comments
 (0)