Skip to content

Commit

Permalink
no thanks black, don't need these commas
Browse files Browse the repository at this point in the history
  • Loading branch information
chlowell committed Sep 17, 2019
1 parent e45b288 commit 841ef7e
Showing 1 changed file with 5 additions and 5 deletions.
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

0 comments on commit 841ef7e

Please sign in to comment.