Skip to content

Commit 01fb283

Browse files
committed
fix: generate_geploy_keys
1 parent 7db4dca commit 01fb283

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

higgsfield/internal/init.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ def init(wd: Path, project_name: str):
5555

5656
hf_deploy_ssh_folder = Path.home() / ".ssh/higgsfield/"
5757
hf_deploy_ssh_folder.mkdir(parents=True, exist_ok=True)
58-
priv, pub, _ = generate_deploy_keys()
58+
priv, pub = generate_deploy_keys()
5959
(hf_deploy_ssh_folder / f"{project_name}-github-deploy.key").write_bytes(priv)
6060

6161
# set permissions to 400

0 commit comments

Comments
 (0)