Skip to content

Commit

Permalink
fix: Remove unnecessary import
Browse files Browse the repository at this point in the history
  • Loading branch information
marioevz committed Mar 26, 2024
1 parent cf9ffb4 commit 201b848
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions src/ethereum_test_tools/spec/debugging.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@
from typing import List

from rich.console import Console
from rich.text import Text

from evm_transition_tool import EVMTransactionTrace, TraceableException

Expand All @@ -18,7 +17,7 @@ def print_traces(*, exception: Exception | None, traces: List[List[EVMTransactio
"""
if traces is None:
console.print(
Text("Traces not collected. Use `--traces` to see detailed execution information.")
"Traces not collected. Use `--traces` to see detailed execution information."
)
return

Expand Down

0 comments on commit 201b848

Please sign in to comment.