Skip to content

Commit 8289f4f

Browse files
ConalMullanclaude
andcommitted
Remove unused imports in ltx2.py (json, requests)
Flagged by code quality bot on PR #9. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent b98933c commit 8289f4f

1 file changed

Lines changed: 1 addition & 3 deletions

File tree

tools/ltx2.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -28,17 +28,15 @@
2828

2929
import argparse
3030
import base64
31-
import json
3231
import sys
3332
from pathlib import Path
3433
from typing import Optional
3534

3635
try:
37-
import requests
3836
from dotenv import load_dotenv
3937
except ImportError as e:
4038
print(f"Missing dependency: {e}")
41-
print("Install with: pip install requests python-dotenv")
39+
print("Install with: pip install python-dotenv")
4240
sys.exit(1)
4341

4442
load_dotenv()

0 commit comments

Comments
 (0)