[Key Vault] Pull keyword-only arguments out of kwargs #31106
Open
Description
opened on Jul 12, 2023
We should update method signatures to use keyword-only argument notation, rather than accepting everything in **kwargs
. For example,
should become
def list_properties_of_certificates(self, *, include_pending: Optional[bool] = None, **kwargs) -> ItemPaged[CertificateProperties]:
since include_pending
is a recognized keyword-only argument.
Metadata
Assignees
Labels
Type
Projects
Status
Not Started
Activity