Skip to content

Commit ced2825

Browse files
committed
refactor: clean up imports and enhance code clarity in CLI
- Added `# noqa` comments to specific imports in `cli.py` for improved linting clarity. - Streamlined import statements to maintain consistency and readability across the file.
1 parent fca8a24 commit ced2825

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

python/tracesmith/cli.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
python -m tracesmith <command>
1818
"""
1919

20-
import argparse
20+
import argparse # noqa: I001
2121
import sys
2222
from pathlib import Path
23-
from typing import Any, Dict, List # noqa: I001
23+
from typing import Any, Dict, List
2424

2525
# =============================================================================
2626
# ANSI Color Codes

0 commit comments

Comments
 (0)