summaryrefslogtreecommitdiff
path: root/bofa.py
diff options
context:
space:
mode:
authorRoger Gonzalez <roger@rogs.me>2022-09-27 21:08:08 -0300
committerRoger Gonzalez <roger@rogs.me>2022-09-27 21:08:08 -0300
commite74ff560ba30fbf029a21f320dd37b3b345f451e (patch)
treeb6e85e585a5bbc3114e4b7144247975224f80bc3 /bofa.py
parentef6904243dd60c4ac08aa543fd6661d512267ffd (diff)
Changed to using local org files
Diffstat (limited to 'bofa.py')
-rw-r--r--bofa.py5
1 files changed, 2 insertions, 3 deletions
diff --git a/bofa.py b/bofa.py
index 3d47411..3a84427 100644
--- a/bofa.py
+++ b/bofa.py
@@ -2,13 +2,12 @@
from pyexcel_ods3 import get_data
-from nextcloud import NextCloudConnection
from settings import EXPENSES_FILENAME
-class BofaData(NextCloudConnection):
+class BofaData():
def get(self) -> None:
- with self.client.open(EXPENSES_FILENAME, mode="rb") as expenses:
+ with open(EXPENSES_FILENAME, "rb") as expenses:
data = get_data(expenses)
main_page = data.get("Main")