Skip to content

Commit

Permalink
set all list
Browse files Browse the repository at this point in the history
  • Loading branch information
montezdesousa committed Feb 26, 2023
1 parent 5053a0a commit 112403e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion openbb_terminal/forex/forex_controller.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
os.path.dirname(__file__), os.path.join("data", "polygon_tickers.csv")
)
tickers = pd.read_csv(forex_data_path).iloc[:, 0].to_list()
FX_TICKERS = tickers + list(set([t[-3:] + t[:3] for t in tickers if len(t) == 6]))
FX_TICKERS = list(set(tickers + [t[-3:] + t[:3] for t in tickers if len(t) == 6]))


class ForexController(BaseController):
Expand Down

0 comments on commit 112403e

Please sign in to comment.