Skip to content

Commit

Permalink
2023.9.1
Browse files Browse the repository at this point in the history
  • Loading branch information
pantherale0 committed Sep 6, 2023
1 parent 64f77a9 commit de49e4a
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pyroostermoney/const.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# pylint: disable=line-too-long
"""Static Rooster Money variables"""

VERSION="2023.9.0"
VERSION="2023.9.1"
BASE_URL="https://api.rooster.money"
OAUTH_TOKEN_URL="https://auth.rooster.money/oidc/token"
LANGUAGE="en-GB"
Expand Down
2 changes: 1 addition & 1 deletion pyroostermoney/family_account.py
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ async def get_transaction_history(self, search_date: date = None):
year=search_date.year
)
)
if search_date is date.today():
if search_date == date.today():
self.current_month_transactions = self._parse_transaction_history(history)
if len(self.current_month_transactions) > 0:
self.latest_transaction = self.current_month_transactions[0]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from setuptools import setup

setup(name="pyroostermoney",
version="2023.9.0",
version="2023.9.1",
description="A RoosterMoney integration for Python.",
url="https://github.com/pantherale0/pyroostermoney",
author="pantherale0",
Expand Down

0 comments on commit de49e4a

Please sign in to comment.