Skip to content

Commit 88d2ab7

Browse files
committed
fix: remove the used import
1 parent 77ebebb commit 88d2ab7

1 file changed

Lines changed: 2 additions & 11 deletions

File tree

traincheck/proxy_wrapper/subclass.py

Lines changed: 2 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,17 @@
1-
import copy
21
import logging
32
import os
43
import threading
5-
import time
6-
import types
7-
from typing import Dict
84

95
import torch
106
from torch import nn
117

12-
import traincheck.config.config as general_config
13-
import traincheck.proxy_wrapper.proxy_config as proxy_config # HACK: cannot directly import config variables as then they would be local variables
14-
import traincheck.proxy_wrapper.proxy_methods as proxy_methods
158
from traincheck.proxy_wrapper.dumper import dump_attributes, get_meta_vars
16-
from traincheck.utils import get_timestamp_ns, typename
9+
from traincheck.utils import get_timestamp_ns
1710

1811
from .dumper import json_dumper as dumper
19-
from .proxy_basics import unproxy_arg, unproxy_args_kwargs
20-
from .proxy_handler import PROXY_SUPPORT_OBJ_TYPES
2112

2213
# from .proxy_registry import get_global_registry
23-
from .utils import print_debug
14+
# from .utils import print_debug
2415

2516

2617
def in_dynamo() -> bool:

0 commit comments

Comments
 (0)