@@ -1110,15 +1110,21 @@ def initialize_chain(
1110
1110
f"[{ COLORS .G .ARG } ]{ ', ' .join (not_selected_networks )} [/{ COLORS .G .ARG } ]"
1111
1111
)
1112
1112
1113
- self .subtensor = SubtensorInterface (network_ , use_disk_cache = use_disk_cache )
1113
+ self .subtensor = SubtensorInterface (
1114
+ network_ , use_disk_cache = use_disk_cache
1115
+ )
1114
1116
elif self .config ["network" ]:
1115
1117
console .print (
1116
1118
f"Using the specified network [{ COLORS .G .LINKS } ]{ self .config ['network' ]} "
1117
1119
f"[/{ COLORS .G .LINKS } ] from config"
1118
1120
)
1119
- self .subtensor = SubtensorInterface (self .config ["network" ], use_disk_cache = use_disk_cache )
1121
+ self .subtensor = SubtensorInterface (
1122
+ self .config ["network" ], use_disk_cache = use_disk_cache
1123
+ )
1120
1124
else :
1121
- self .subtensor = SubtensorInterface (defaults .subtensor .network , use_disk_cache = use_disk_cache )
1125
+ self .subtensor = SubtensorInterface (
1126
+ defaults .subtensor .network , use_disk_cache = use_disk_cache
1127
+ )
1122
1128
return self .subtensor
1123
1129
1124
1130
def _run_command (self , cmd : Coroutine , exit_early : bool = True ):
@@ -1280,7 +1286,7 @@ def set_config(
1280
1286
"--disk-cache/--no-disk-cache" ,
1281
1287
" /--no-disk-cache" ,
1282
1288
help = "Enables or disables the caching on disk. Enabling this can significantly speed up commands run "
1283
- "sequentially"
1289
+ "sequentially" ,
1284
1290
),
1285
1291
rate_tolerance : Optional [float ] = typer .Option (
1286
1292
None ,
0 commit comments