Skip to content

Commit

Permalink
removed unused params
Browse files Browse the repository at this point in the history
  • Loading branch information
djeck1432 committed Nov 18, 2024
1 parent b9dfcd2 commit eb6d2b6
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions apps/dashboard_app/helpers/protocol_stats.py
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,6 @@
def get_general_stats(
states: list[State],
loan_stats: dict[str, pd.DataFrame],
save_data: bool = False,
) -> pd.DataFrame:
data = []
for state in states:
Expand Down Expand Up @@ -51,7 +50,6 @@ def get_general_stats(
def get_supply_stats(
states: list[State],
prices: Prices,
save_data: bool = False,
) -> pd.DataFrame:
data = []
for state in states:
Expand Down Expand Up @@ -103,7 +101,6 @@ def get_supply_stats(

def get_collateral_stats(
states: list[State],
save_data: bool = False,
) -> pd.DataFrame:
data = []
for state in states:
Expand Down Expand Up @@ -154,7 +151,6 @@ def get_collateral_stats(

def get_debt_stats(
states: list[State],
save_data: bool = False,
) -> pd.DataFrame:
data = []
for state in states:
Expand Down Expand Up @@ -208,7 +204,6 @@ def get_utilization_stats(
general_stats: pd.DataFrame,
supply_stats: pd.DataFrame,
debt_stats: pd.DataFrame,
save_data: bool = False,
) -> pd.DataFrame:
data = pd.DataFrame(
{
Expand Down

0 comments on commit eb6d2b6

Please sign in to comment.