Skip to content

Commit a0f1bf6

Browse files
Fix: Remove unused imports and add missing datetime import
1 parent 8199d54 commit a0f1bf6

File tree

1 file changed

+3
-7
lines changed

1 file changed

+3
-7
lines changed

module_disassembler.py

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -12,15 +12,14 @@
1212
import os
1313
import sys
1414
import json
15-
import time
15+
import datetime
1616
import logging
1717
import argparse
18-
import tempfile
1918
import re
2019
import hashlib
2120
from pathlib import Path
22-
from typing import Dict, List, Set, Tuple, Any, Optional, Union, Callable
23-
from collections import Counter, defaultdict
21+
from typing import Dict, List, Tuple, Any, Optional
22+
from collections import defaultdict
2423
import networkx as nx
2524
import matplotlib.pyplot as plt
2625
from rich.console import Console
@@ -30,8 +29,6 @@
3029
try:
3130
from codegen.sdk.core.codebase import Codebase
3231
from codegen.configs.models.codebase import CodebaseConfig
33-
from codegen.configs.models.secrets import SecretsConfig
34-
from codegen.shared.enums.programming_language import ProgrammingLanguage
3532
# Import the CodebaseAnalyzer if available
3633
try:
3734
from codegen_on_oss.error_analyzer import CodebaseAnalyzer
@@ -478,4 +475,3 @@ def main():
478475

479476
if __name__ == "__main__":
480477
main()
481-

0 commit comments

Comments
 (0)