From a619f7fd9f4ab1552cd6d3c0aa8bb58b662a0171 Mon Sep 17 00:00:00 2001 From: tannaya7 Date: Thu, 16 Apr 2026 20:22:15 +0530 Subject: [PATCH] docs: fix broken markdown links and add lychee config Signed-off-by: tannaya7 --- docs/sdk_developers/training/network_and_client.md | 6 ++---- pyproject.toml | 13 +++++++++++++ 2 files changed, 15 insertions(+), 4 deletions(-) diff --git a/docs/sdk_developers/training/network_and_client.md b/docs/sdk_developers/training/network_and_client.md index 3604e00ba..08ed71d56 100644 --- a/docs/sdk_developers/training/network_and_client.md +++ b/docs/sdk_developers/training/network_and_client.md @@ -373,12 +373,10 @@ The Network and Client are separate but interdependent: 2. **Client provides WHO and HOW**: The Client specifies who you are (operator credentials) and manages the actual communication 3. **Together they enable communication**: The combination allows your application to securely interact with the Hedera blockchain -## -### Example: Complete Setup - --```python -+### Example: Complete Setup +### Example: Complete Setup ```python + from hiero_sdk_python.client.network import Network from hiero_sdk_python.client.client import Client from hiero_sdk_python.account.account_id import AccountId diff --git a/pyproject.toml b/pyproject.toml index 47b0cd173..aa743c99f 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -147,3 +147,16 @@ skip-magic-trailing-comma = false [tool.ruff.lint.pydocstyle] convention = "google" + +[tool.lychee] +exclude = [ + "github.com/owner/repo", + "github.com/YOUR_", + "testnet.mirrornode.hedera.com/api/v1/transactions/0.0.123", + "localhost", + "github.com/user-attachments/assets/", +] + +timeout = 20 +retry_wait_time = 2 +max_retries = 3