Trivial re-ordering of imports based on alphabetical order

This commit is contained in:
moshferatu 2024-10-28 11:27:47 -07:00
parent 2e3ed927da
commit 0d2afb2036

View File

@ -10,8 +10,8 @@ from typing import Callable, List, Dict
from ohlc import ohlc from ohlc import ohlc
from plotting import CandlestickChart, figure_with_subplots from plotting import CandlestickChart, figure_with_subplots
from strategies import internal_bar_strength
from strategies import end_of_month from strategies import end_of_month
from strategies import internal_bar_strength
from stylesheets import grid_stylesheet, theme_stylesheet from stylesheets import grid_stylesheet, theme_stylesheet
app = Dash(__name__, external_stylesheets = [theme_stylesheet, grid_stylesheet]) app = Dash(__name__, external_stylesheets = [theme_stylesheet, grid_stylesheet])