Skip to content

Commit 9090596

Browse files
committed
pre-commit
1 parent e6da74c commit 9090596

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

chia/legacy/keyring.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77

88
import sys
99
from collections.abc import Callable
10-
from typing import cast
10+
from typing import TypeAlias, cast
1111

1212
import click
1313
from chia_rs import G1Element
@@ -26,7 +26,7 @@
2626
from chia.util.errors import KeychainUserNotFound
2727
from chia.util.keychain import MAX_KEYS, KeyData, KeyDataSecrets, get_private_key_user
2828

29-
LegacyKeyring = MacKeyring | WinKeyring | CryptFileKeyring
29+
LegacyKeyring: TypeAlias = MacKeyring | WinKeyring | CryptFileKeyring
3030

3131

3232
CURRENT_KEY_VERSION = "1.8"

0 commit comments

Comments
 (0)