From e8042c6c1986d473f39d5c1f698c12d817d6e5d9 Mon Sep 17 00:00:00 2001 From: kdeng00 Date: Sat, 1 Oct 2022 20:33:42 -0400 Subject: [PATCH] Updated config Slight correction --- Models.py | 6 +++--- config.json | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Models.py b/Models.py index 2adb6ca..12e954a 100644 --- a/Models.py +++ b/Models.py @@ -71,8 +71,8 @@ class Config(object): self.vendors = vendors class Vendor(object): - def __init__(self, username=None, password=None, source_notebook=None, source_section=None) -> None: + def __init__(self, username=None, password=None, target_notebook=None, target_section=None) -> None: self.username = username self.password = password - self.source_notebook = source_notebook - self.source_section = source_section \ No newline at end of file + self.target_notebook = target_notebook + self.target_section = target_section \ No newline at end of file diff --git a/config.json b/config.json index be72718..9133c08 100644 --- a/config.json +++ b/config.json @@ -16,8 +16,8 @@ "onenote": { "username": "", "password": "", - "source_notebook": "New notebook", - "source_section": "New Section" + "target_notebook": "New notebook", + "target_section": "New Section" } } } \ No newline at end of file