From 6d5f94a44bfe893eb334a08ce98764ea8ec343af Mon Sep 17 00:00:00 2001 From: John M <5000729+jmuchovej@users.noreply.github.com> Date: Mon, 6 Sep 2021 18:52:30 -0400 Subject: [PATCH] =?UTF-8?q?=E2=9C=8F=EF=B8=8F=20Remove=20dangling=20ipdb?= =?UTF-8?q?=20usage?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- paperpile_notion/commands.py | 1 - pyproject.toml | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/paperpile_notion/commands.py b/paperpile_notion/commands.py index a2908d2..1b0c5b9 100644 --- a/paperpile_notion/commands.py +++ b/paperpile_notion/commands.py @@ -73,7 +73,6 @@ def _preload_databases(ctx: click.Context, references: click.File) -> None: def update_db(ctx: click.Context, references: click.File) -> None: """Updates your Author and Article databases.""" _preload_databases(ctx, references) - import ipdb; ipdb.set_trace() ctx.invoke(update_author_db, references=references) ctx.invoke(update_article_db, references=references) diff --git a/pyproject.toml b/pyproject.toml index bf3d7e0..f10c160 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "paperpile-notion" -version = "0.3.2" +version = "0.3.3" description = "Sync Notion with Paperpile" authors = ["J Muchovej <5000729+jmuchovej@users.noreply.github.com>"] license = "MIT"