From 87e9936081ee06abb624ce32965f3ce33af9627d Mon Sep 17 00:00:00 2001 From: Vika Date: Fri, 2 Feb 2024 12:36:56 +0300 Subject: [PATCH] pyrage-stubs: add passphrase module import Without it, the types aren't found. --- pyrage-stubs/pyrage-stubs/__init__.pyi | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyrage-stubs/pyrage-stubs/__init__.pyi b/pyrage-stubs/pyrage-stubs/__init__.pyi index 9e29587..e737bbe 100644 --- a/pyrage-stubs/pyrage-stubs/__init__.pyi +++ b/pyrage-stubs/pyrage-stubs/__init__.pyi @@ -1,6 +1,6 @@ from typing import Sequence, Union -from pyrage import ssh, x25519, plugin +from pyrage import ssh, x25519, plugin, passphrase Identity = Union[ssh.Identity, x25519.Identity, plugin.IdentityPluginV1] Recipient = Union[ssh.Recipient, x25519.Recipient, plugin.RecipientPluginV1]