Removed old type hinting

This commit is contained in:
Alexandre Paillier
2023-11-24 17:02:18 +01:00
parent edad008ed1
commit c65db6f307
6 changed files with 12 additions and 15 deletions

View File

@@ -4,7 +4,7 @@ import re
import signal
import sys
import copy
from typing import Any, Callable, Dict, List, Optional
from typing import Any, Callable, Optional
from ledger_app_clients.ethereum import keychain
from ledger_app_clients.ethereum.client import EthAppClient, EIP712FieldType
@@ -12,9 +12,9 @@ from ledger_app_clients.ethereum.client import EthAppClient, EIP712FieldType
# global variables
app_client: EthAppClient = None
filtering_paths: Dict = {}
current_path: List[str] = list()
sig_ctx: Dict[str, Any] = {}
filtering_paths: dict = {}
current_path: list[str] = list()
sig_ctx: dict[str, Any] = {}
def default_handler():