Skip to content

Commit fe2c914

Browse files
authored
Merge pull request #1684 from byuccl/fix_py_inspect
Fix Python 'inspect' package name conflict
2 parents 574525c + 31d7d0c commit fe2c914

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

vtr_flow/scripts/python_libs/vtr/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919
pretty_print_table,
2020
find_task_dir,
2121
)
22-
from .inspect import (
22+
from .log_parse import (
2323
determine_lut_size,
2424
determine_min_w,
2525
determine_memory_addr_width,

vtr_flow/scripts/python_libs/vtr/parse_vtr_task.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,9 @@
1+
#!/usr/bin/env python3
2+
13
"""
24
Parse one or more task provided
35
"""
46

5-
#!/usr/bin/env python3
67
from pathlib import Path
78
from pathlib import PurePath
89
import sys

0 commit comments

Comments
 (0)