Skip to content

Commit

Permalink
Merge branch 'main' into restructure_payouts
Browse files Browse the repository at this point in the history
  • Loading branch information
harisang authored Jan 22, 2025
2 parents 5aba9ea + 97cd3d4 commit a55a9f0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
4 changes: 1 addition & 3 deletions src/data_sync/sync_data.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,9 +82,7 @@ def __init__(self) -> None:
self.end_time = datetime.datetime(
current_time.year, current_time.month, 1
) + relativedelta(months=1)
log.info(
f"No start time set, using beginning of next month {self.end_time}."
)
log.info(f"No end time set, using beginning of next month {self.end_time}.")
else:
self.end_time: datetime.datetime = arguments.end_time
self.start_time = self.start_time.replace(tzinfo=datetime.timezone.utc)
Expand Down
2 changes: 1 addition & 1 deletion src/models/overdraft.py
Original file line number Diff line number Diff line change
Expand Up @@ -29,5 +29,5 @@ def eth(self) -> float:
def __str__(self) -> str:
return (
f"Overdraft(solver={self.account} ({self.name}),"
f"period={self.period},owed={self.eth} ETH)"
f"period={self.period},owed={self.eth} native token units)"
)

0 comments on commit a55a9f0

Please sign in to comment.