Skip to content

Commit

Permalink
log: Ignore high complexity of retrieve_aggregated_log() for now
Browse files Browse the repository at this point in the history
This method will be by the ongoing rework of the data logging code, so
let's avoid serious merge conflicts here.
  • Loading branch information
mhthies committed May 7, 2023
1 parent 65d5f24 commit 7cc682b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion shc/log/generic.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ async def retrieve_log(self, start_time: datetime.datetime, end_time: datetime.d
"""
pass

async def retrieve_aggregated_log(self, start_time: datetime.datetime, end_time: datetime.datetime,
async def retrieve_aggregated_log(self, start_time: datetime.datetime, end_time: datetime.datetime, # noqa: C901
aggregation_method: AggregationMethod, aggregation_interval: datetime.timedelta
) -> List[Tuple[datetime.datetime, float]]:
data = await self.retrieve_log(start_time, end_time, include_previous=True)
Expand Down

0 comments on commit 7cc682b

Please sign in to comment.