diff options
author | Tim Hutt <tdhutt@gmail.com> | 2024-10-29 21:11:51 +0000 |
---|---|---|
committer | Tim Hutt <timothy.hutt@codasip.com> | 2024-10-29 21:11:51 +0000 |
commit | 938e6d5b038426cf881e433040b16803d82288a3 (patch) | |
tree | 7c61446754b331bb761da7d29f440fff78568d01 | |
parent | aa5687996a82e1b1aa32dcba537dd263b5af9f55 (diff) | |
download | riscv-opcodes-938e6d5b038426cf881e433040b16803d82288a3.zip riscv-opcodes-938e6d5b038426cf881e433040b16803d82288a3.tar.gz riscv-opcodes-938e6d5b038426cf881e433040b16803d82288a3.tar.bz2 |
Remove unused imports
Remove unused Python import statements.
-rw-r--r-- | c_utils.py | 6 | ||||
-rw-r--r-- | chisel_utils.py | 8 | ||||
-rw-r--r-- | go_utils.py | 6 | ||||
-rw-r--r-- | rust_utils.py | 8 | ||||
-rw-r--r-- | sverilog_utils.py | 7 |
5 files changed, 0 insertions, 35 deletions
@@ -1,12 +1,6 @@ -import collections -import glob import logging import os import pprint -import re -import sys - -import yaml # from shared_utils import overlaps, overlap_allowed, extension_overlap_allowed, instruction_overlap_allowed, process_enc_line, same_base_isa, add_segmented_vls_insn, expand_nf_field from shared_utils import * diff --git a/chisel_utils.py b/chisel_utils.py index 957e4f8..0943584 100644 --- a/chisel_utils.py +++ b/chisel_utils.py @@ -1,13 +1,5 @@ -import collections -import copy -import glob import logging -import os import pprint -import re -import sys - -import yaml from constants import * diff --git a/go_utils.py b/go_utils.py index 1f4c94b..ed47441 100644 --- a/go_utils.py +++ b/go_utils.py @@ -1,13 +1,7 @@ -import collections -import glob import logging -import os import pprint -import re import sys -import yaml - # from shared_utils import overlaps, overlap_allowed, extension_overlap_allowed, instruction_overlap_allowed, process_enc_line, same_base_isa, add_segmented_vls_insn, expand_nf_field from shared_utils import * diff --git a/rust_utils.py b/rust_utils.py index 19a47b9..68e0c8c 100644 --- a/rust_utils.py +++ b/rust_utils.py @@ -1,13 +1,5 @@ -import collections -import copy -import glob import logging -import os import pprint -import re -import sys - -import yaml from constants import * diff --git a/sverilog_utils.py b/sverilog_utils.py index 1fe2068..8916313 100644 --- a/sverilog_utils.py +++ b/sverilog_utils.py @@ -1,12 +1,5 @@ -import collections -import glob import logging -import os import pprint -import re -import sys - -import yaml # from shared_utils import overlaps, overlap_allowed, extension_overlap_allowed, instruction_overlap_allowed, process_enc_line, same_base_isa, add_segmented_vls_insn, expand_nf_field from shared_utils import * |