File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -134,7 +134,7 @@ def start_list_data(args: dict[str, Any]) -> None:
134134 config ["datadir" ], config .get ("trading_mode" , TradingMode .SPOT )
135135 )
136136 if args ["pairs" ]:
137- pl = expand_pairlist (args ["pairs" ], ( p [0 ] for p in paircombs ) , keep_invalid = True )
137+ pl = expand_pairlist (args ["pairs" ], [ p [0 ] for p in paircombs ] , keep_invalid = True )
138138 paircombs = [comb for comb in paircombs if comb [0 ] in pl ]
139139 title = f"Found { len (paircombs )} pair / timeframe combinations."
140140 if not config .get ("show_timerange" ):
@@ -198,7 +198,7 @@ def start_list_trades_data(args: dict[str, Any]) -> None:
198198 )
199199
200200 if args ["pairs" ]:
201- pl = expand_pairlist (args ["pairs" ], ( p [0 ] for p in paircombs ) , keep_invalid = True )
201+ pl = expand_pairlist (args ["pairs" ], [ p [0 ] for p in paircombs ] , keep_invalid = True )
202202 paircombs = [comb for comb in paircombs if comb [0 ] in pl ]
203203
204204 title = f"Found trades data for { len (paircombs )} { plural (len (paircombs ), 'pair' )} ."
You can’t perform that action at this time.
0 commit comments