Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions MoveLowPrioritytoShoppingList.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,10 @@
import re
from time import sleep

import gkeepapi
import keyring
import maskpass

import gkeepapi

# from time import perf_counter as timer

# if os.name == "nt":
Expand Down Expand Up @@ -142,7 +141,6 @@ def checkNumSets(num_sets: int) -> bool:


class KeepListObj:

def __init__(
self, keep_notes: gkeepapi.Keep, primary_list: str, secondary_list: str
) -> None:
Expand Down Expand Up @@ -411,7 +409,9 @@ def main():
description="Move Low Priority Items to Primary List in Google Keep"
)
parser.add_argument("--config", "-c", default="", help="Input config file path")
parser.add_argument("--debug", "-d", action="store_true", help="Enable debug logging mode")
parser.add_argument(
"--debug", "-d", action="store_true", help="Enable debug logging mode"
)

args = parser.parse_args()

Expand Down