Skip to content

Commit

Permalink
Change formating
Browse files Browse the repository at this point in the history
  • Loading branch information
aheldes committed Aug 19, 2022
1 parent 970310e commit 188a16b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/component.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
"""
import logging
import requests
from datetime import datetime, timedelta, time, date
from datetime import datetime, timedelta, time
import json
import time as time2
import pandas as pd
Expand Down Expand Up @@ -226,7 +226,7 @@ def parse_biling_entries(data):

# Set start to 1.1.2020 and stop to yesterday
today = datetime.today().date()
start_date = today - timedelta(days=1)
start_date = today - timedelta(days=1)
stop_date = datetime.today().date() - timedelta(days=self.days)

# Get date list
Expand Down

0 comments on commit 188a16b

Please sign in to comment.