Skip to content

Commit 6cddd52

Browse files
committed
Make protocol arguments positional only as suggested in the review
1 parent a189e29 commit 6cddd52

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

stdlib/_typeshed/importlib.pyi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,4 @@ class MetaPathFinderProtocol(Protocol):
1515
def find_spec(self, fullname: str, path: Sequence[str] | None, target: ModuleType | None = ..., /) -> ModuleSpec | None: ...
1616

1717
class PathEntryFinderProtocol(Protocol):
18-
def find_spec(self, fullname: str, target: ModuleType | None = ...) -> ModuleSpec | None: ...
18+
def find_spec(self, fullname: str, target: ModuleType | None = ..., /) -> ModuleSpec | None: ...

0 commit comments

Comments
 (0)