Skip to content

Commit e9b57e5

Browse files
authored
docs: fix broken markdown links and add lychee config (#2114)
Signed-off-by: tannaya7 <tannayasupriya157@gmail.com>
1 parent bd98fd3 commit e9b57e5

2 files changed

Lines changed: 15 additions & 4 deletions

File tree

docs/sdk_developers/training/network_and_client.md

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -373,12 +373,10 @@ The Network and Client are separate but interdependent:
373373
2. **Client provides WHO and HOW**: The Client specifies who you are (operator credentials) and manages the actual communication
374374
3. **Together they enable communication**: The combination allows your application to securely interact with the Hedera blockchain
375375

376-
## -### Example: Complete Setup
377-
378-
-```python
379-
+### Example: Complete Setup
376+
### Example: Complete Setup
380377

381378
```python
379+
382380
from hiero_sdk_python.client.network import Network
383381
from hiero_sdk_python.client.client import Client
384382
from hiero_sdk_python.account.account_id import AccountId

pyproject.toml

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,3 +147,16 @@ skip-magic-trailing-comma = false
147147

148148
[tool.ruff.lint.pydocstyle]
149149
convention = "google"
150+
151+
[tool.lychee]
152+
exclude = [
153+
"github.com/owner/repo",
154+
"github.com/YOUR_",
155+
"testnet.mirrornode.hedera.com/api/v1/transactions/0.0.123",
156+
"localhost",
157+
"github.com/user-attachments/assets/",
158+
]
159+
160+
timeout = 20
161+
retry_wait_time = 2
162+
max_retries = 3

0 commit comments

Comments
 (0)