Skip to content

Commit 78292c6

Browse files
fix: duplicate import in transaction.py (#857)
Signed-off-by: mukundkumarjha <mukundiiitg@gmail.com>
1 parent b7c3867 commit 78292c6

File tree

2 files changed

+10
-1
lines changed

2 files changed

+10
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
66

77
## [Unreleased]
88

9+
### Added
10+
11+
### Changed
12+
13+
- Removed duplicate import of transaction_pb2 in transaction.py
14+
15+
### Fixed
16+
917
## [0.1.9] - 2025-11-26
1018

1119
### Added
@@ -60,6 +68,7 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
6068
- changed to add concurrency to workflow bot
6169
- feat: Refactor `TokenDissociateTransaction` to use set_token_ids method and update transaction fee to Hbar, also update `transaction.py` and expand `examples/token_dissociate.py`, `tests/unit/token_dissociate.py`.
6270

71+
6372
### Fixed
6473

6574
- chore: updated solo action to avoid v5

src/hiero_sdk_python/transaction/transaction.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99
from hiero_sdk_python.crypto.private_key import PrivateKey
1010
from hiero_sdk_python.exceptions import PrecheckError
1111
from hiero_sdk_python.executable import _Executable, _ExecutionState
12-
from hiero_sdk_python.hapi.services import (basic_types_pb2, transaction_pb2, transaction_contents_pb2, transaction_pb2)
12+
from hiero_sdk_python.hapi.services import (basic_types_pb2, transaction_pb2, transaction_contents_pb2)
1313
from hiero_sdk_python.hapi.services.schedulable_transaction_body_pb2 import SchedulableTransactionBody
1414
from hiero_sdk_python.hapi.services.transaction_response_pb2 import (TransactionResponse as TransactionResponseProto)
1515
from hiero_sdk_python.hbar import Hbar

0 commit comments

Comments
 (0)