Skip to content

Commit 1d63ebd

Browse files
Apply suggestions from code review
Co-authored-by: coderabbitai[bot] <136622811+coderabbitai[bot]@users.noreply.github.com>
1 parent 7cd9d52 commit 1d63ebd

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

test_all_tools.py

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -139,9 +139,8 @@ def run_all_tests(self):
139139
"""Run tests for all tool categories."""
140140

141141
print("🧪 Starting comprehensive tool testing...")
142-
api_key = os.environ.get('ETHERSCAN_API_KEY', 'NOT_SET')
143-
if api_key != 'NOT_SET':
144-
print(f"Using API Key: {api_key[:10]}...")
142+
if os.environ.get('ETHERSCAN_API_KEY'):
143+
print("Using ETHERSCAN_API_KEY from environment.")
145144
print("=" * 80)
146145

147146
# Test each category

0 commit comments

Comments
 (0)