Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
no thanks black, don't need these commas
  • Loading branch information
chlowell committed Sep 17, 2019
commit 841ef7e3cea81eb48d8a6ade19a5e038a9756b69
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ async def create_key(
expires: Optional[datetime] = None,
not_before: Optional[datetime] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs: "**Any",
**kwargs: "**Any"
) -> Key:
"""Create a key. If ``name`` is already in use, create a new version of the key. Requires the keys/create
permission.
Expand Down Expand Up @@ -120,7 +120,7 @@ async def create_rsa_key(
expires: Optional[datetime] = None,
not_before: Optional[datetime] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs: "**Any",
**kwargs: "**Any"
) -> Key:
"""Create a new RSA key. If ``name`` is already in use, create a new version of the key. Requires the
keys/create permission.
Expand Down Expand Up @@ -171,7 +171,7 @@ async def create_ec_key(
expires: Optional[datetime] = None,
not_before: Optional[datetime] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs: "**Any",
**kwargs: "**Any"
) -> Key:
"""Create a new elliptic curve key. If ``name`` is already in use, create a new version of the key. Requires
the keys/create permission.
Expand Down Expand Up @@ -407,7 +407,7 @@ async def update_key(
not_before: Optional[datetime] = None,
expires: Optional[datetime] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs: "**Any",
**kwargs: "**Any"
) -> Key:
"""Change attributes of a key. Cannot change a key's cryptographic material. Requires the keys/update
permission.
Expand Down Expand Up @@ -513,7 +513,7 @@ async def import_key(
not_before: Optional[datetime] = None,
expires: Optional[datetime] = None,
tags: Optional[Dict[str, str]] = None,
**kwargs: "**Any",
**kwargs: "**Any"
) -> Key:
"""Import an externally created key. If ``name`` is already in use, import the key as a new version. Requires
the keys/import permission.
Expand Down