Skip to content

Commit

Permalink
remove bad params
Browse files Browse the repository at this point in the history
  • Loading branch information
pvyParts committed Nov 29, 2023
1 parent 8b42a0f commit a052354
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions taxtools/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -456,14 +456,14 @@ def get_character_aggregates_corp_level_id(self, ids, full=True, alliance_filter
f"TAXTOOLS: Started get_character_aggregates_corp_level_from_ids {self.__str_console__()}")
data = self.get_character_aggregates_ids(
ids, alliance_filter)
return self.process_character_aggregates_corp_level(data, full=full, alliance_filter=alliance_filter)
return self.process_character_aggregates_corp_level(data, full=full)

def get_character_aggregates_corp_level(self, start_date=MIN_DATE, end_date=MAX_DATE, full=True, alliance_filter=None):
logger.debug(
f"TAXTOOLS: Started get_character_aggregates_corp_level {self.__str_console__()}")
data = self.get_character_aggregates(
start_date, end_date, alliance_filter)
return self.process_character_aggregates_corp_level(data, full=full, alliance_filter=alliance_filter)
return self.process_character_aggregates_corp_level(data, full=full)


# CorpTaxChangeMsg
Expand Down

0 comments on commit a052354

Please sign in to comment.