File tree Expand file tree Collapse file tree 2 files changed +4
-23
lines changed Expand file tree Collapse file tree 2 files changed +4
-23
lines changed Original file line number Diff line number Diff line change 55
55
SubnetState ,
56
56
WeightCommitInfo ,
57
57
)
58
- from bittensor .core .config import (
59
- InvalidConfigFile ,
60
- DefaultConfig ,
61
- Config ,
62
- T ,
63
- )
58
+ from bittensor .core .config import Config
64
59
from bittensor .core .dendrite import Dendrite
65
60
from bittensor .core .errors import (
66
61
BlacklistedException ,
@@ -245,10 +240,7 @@ def info(on: bool = True):
245
240
"SubnetInfo" ,
246
241
"SubnetState" ,
247
242
"WeightCommitInfo" ,
248
- "InvalidConfigFile" ,
249
- "DefaultConfig" ,
250
243
"Config" ,
251
- "T" ,
252
244
"Dendrite" ,
253
245
"BlacklistedException" ,
254
246
"ChainConnectionError" ,
@@ -318,19 +310,6 @@ def info(on: bool = True):
318
310
"wallet" ,
319
311
"subtensor" ,
320
312
"synapse" ,
321
- "__blocktime__" ,
322
- "__network_explorer_map__" ,
323
- "__pipaddress__" ,
324
- "__ss58_format__" ,
325
- "__type_registry__" ,
326
- "__ss58_address_length__" ,
327
- "__networks__" ,
328
- "__finney_entrypoint__" ,
329
- "__finney_test_entrypoint__" ,
330
- "__archive_entrypoint__" ,
331
- "__local_entrypoint__" ,
332
- "__tao_symbol__" ,
333
- "__rao_symbol__" ,
334
313
"trace" ,
335
314
"debug" ,
336
315
"warning" ,
Original file line number Diff line number Diff line change 9
9
[
10
10
a
11
11
for a in dir (easy_imports )
12
- if (not a .startswith ("__" ) and a not in ["sys" , "importlib" ]) # we don't care about systemwide pkgs
12
+ if (
13
+ not a .startswith ("__" ) and a not in ["sys" , "importlib" ]
14
+ ) # we don't care about systemwide pkgs
13
15
],
14
16
)
15
17
def test_easy_imports (attr ):
You can’t perform that action at this time.
0 commit comments