Skip to content

Commit d1c19f7

Browse files
authored
chore: fix broken training documentation links (hiero-ledger#1737)
Signed-off-by: ParasSalonia <parassalonia22@gmail.com> Signed-off-by: Paras Salonia <parassalonia22@gmail.com>
1 parent 594edea commit d1c19f7

4 files changed

Lines changed: 12 additions & 12 deletions

File tree

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -251,12 +251,12 @@ This changelog is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.
251251
- Update changelog workflow to trigger automatically on pull requests instead of manual dispatch (#1567)
252252
- Formatted key-related unit test files (`key_utils_test.py`, `test_key_format.py`, `test_key_list.py`) using the black formatter
253253
- Add return type hint to `ContractId.__str__`. (#1654)
254-
255254
- chore: update maintainer guidelines link in MAINTAINERS.md (#1605)
256255
- chore: update merge conflict bot message with web editor tips (#1592)
257256
- chore: update MAINTAINERS.md to include new maintainer Manish Dait and sort maintainers by GitHub ID. (#1691)
258257

259258
### Fixed
259+
- Corrected broken documentation links in SDK developer training files.(#1707)
260260
- Fixed assignment limit check to only count issues (not PRs) towards the maximum 2 concurrent assignments, allowing users to be assigned to PRs without affecting their issue assignment capacity. (#1717)
261261
- Updated Good First Issue recommendations to supported Hiero repositories. (#1689)
262262
- Fix the next-issue recommendation bot to post the correct issue recommendation comment. (#1593)

docs/sdk_developers/training/query.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -410,13 +410,13 @@ balance = query.execute(client)
410410
411411
The SDK includes several production-ready query implementations that demonstrate best practices for extending `Query`. Contributors are encouraged to review these examples when implementing new queries:
412412

413-
- [`account_balance_query.py`](../../examples/query/account_balance_query.py) — Simple query with minimal configuration
414-
- [`account_info_query.py`](../../examples/query/account_info_query.py) — Paid query with structured response
415-
- [`token_info_query.py`](../../examples/query/token_info_query_fungible.py) — Fungible token metadata
416-
- [`token_nft_info_query.py`](../../examples/query/token_nft_info_query.py) — NFT token metadata
417-
- [`topic_info_query.py`](../../examples/query/topic_info_query.py) — Streaming-style topic message retrieval
418-
- [`transaction_get_receipt_query.py`](../../examples/query/transaction_get_receipt_query.py) — Transaction receipt lookup
419-
- [`transaction_record_query.py`](../../examples/query/transaction_record_query.py) — Transaction record retrieval
413+
- [`account_balance_query.py`](../../../examples/query/account_balance_query.py) — Simple query with minimal configuration
414+
- [`account_info_query.py`](../../../examples/query/account_info_query.py) — Paid query with structured response
415+
- [`token_info_query.py`](../../../examples/query/token_info_query_fungible.py) — Fungible token metadata
416+
- [`token_nft_info_query.py`](../../../examples/query/token_nft_info_query.py) — NFT token metadata
417+
- [`topic_info_query.py`](../../../examples/query/topic_info_query.py) — Streaming-style topic message retrieval
418+
- [`transaction_get_receipt_query.py`](../../../examples/query/transaction_get_receipt_query.py) — Transaction receipt lookup
419+
- [`transaction_record_query.py`](../../../examples/query/transaction_record_query.py) — Transaction record retrieval
420420

421421
These examples illustrate consistent usage of `_make_request()`, `_get_query_response()`, and `_get_method()` without duplicating execution or payment logic.
422422

docs/sdk_developers/training/setup/05_network_client_setup.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,4 +52,4 @@ print(f"🎉 Created new token on the Hedera network with ID: {token_id}")
5252
```
5353

5454
### Extra Support
55-
Read about Network and Client in more detail [here](docs/sdk_developers/training/network_and_client.md)
55+
Read about Network and Client in more detail [here](../network_and_client.md)

docs/sdk_developers/training/setup/06_importing_hiero_files.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -71,6 +71,6 @@ print(f"🎉 Created new token on the Hedera network with ID: {token_id}")
7171
## Extra Support
7272
It takes time to be familiar with where everything is located to import correctly.
7373

74-
- For reference, look at the [examples](examples/)
75-
- For an explanation of the project structure read [project_structure.md](docs/sdk_developers/training/setup/project_structure.md).
76-
- Set up [Pylance](docs/sdk_developers/pylance.md) to help you spot errors in your import locations
74+
- For reference, look at the [examples](../../../../examples)
75+
- For an explanation of the project structure read [project_structure.md](project_structure.md)
76+
- Set up [Pylance](https://marketplace.visualstudio.com/items?itemName=ms-python.vscode-pylance) to help you spot errors in your import locations

0 commit comments

Comments
 (0)