Skip to content

Commit 948f76a

Browse files
committed
Fix imports for List and AccountId; update executable; sync with main
Signed-off-by: Angelina <aceppaluni@gmail.com>
1 parent 7ffc7e4 commit 948f76a

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/hiero_sdk_python/executable.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
from os import error
22
import time
3-
from typing import Callable, Optional, Any, TYPE_CHECKING
3+
from typing import Callable, Optional, Any, TYPE_CHECKING, List
44
import grpc
55
from abc import ABC, abstractmethod
66
from enum import IntEnum
@@ -9,6 +9,7 @@
99
from hiero_sdk_python.exceptions import MaxAttemptsError
1010
if TYPE_CHECKING:
1111
from hiero_sdk_python.client.client import Client
12+
from hiero_sdk_python.account_id import AccountId
1213

1314
# Default values for retry and backoff configuration in miliseconds
1415
DEFAULT_MAX_BACKOFF: int = 8000

0 commit comments

Comments
 (0)