Skip to content

Commit

Permalink
WIP: Tuple tuple
Browse files Browse the repository at this point in the history
  • Loading branch information
andreaso committed Apr 1, 2024
1 parent b43f619 commit aa6596a
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion vault_oidc_ssh_cert_action.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import os
import subprocess
import tempfile
from typing import Tuple
from urllib.parse import urlparse

import requests
Expand Down Expand Up @@ -106,7 +107,7 @@ def _issue_ssh_cert(

def _generate_and_sign(
vault_server: str, vault_token: str, ssh_backend: str, ssh_role: str
) -> tuple[str, str]:
) -> Tuple[str, str]:
key_fname = "id_github"
cert_fname = f"{key_fname}-cert.pub"

Expand Down

0 comments on commit aa6596a

Please sign in to comment.