Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove unused imports #306

Merged
merged 2 commits into from
Oct 30, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 0 additions & 7 deletions c_utils.py
Original file line number Diff line number Diff line change
@@ -1,14 +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 *

pp = pprint.PrettyPrinter(indent=2)
Expand Down
8 changes: 0 additions & 8 deletions chisel_utils.py
Original file line number Diff line number Diff line change
@@ -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 *

Expand Down
7 changes: 0 additions & 7 deletions go_utils.py
Original file line number Diff line number Diff line change
@@ -1,14 +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 *

pp = pprint.PrettyPrinter(indent=2)
Expand Down
8 changes: 0 additions & 8 deletions rust_utils.py
Original file line number Diff line number Diff line change
@@ -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 *

Expand Down
8 changes: 0 additions & 8 deletions sverilog_utils.py
Original file line number Diff line number Diff line change
@@ -1,14 +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 *

pp = pprint.PrettyPrinter(indent=2)
Expand Down
Loading