From 14499eab65380037261df4520aa63e2e86247cc9 Mon Sep 17 00:00:00 2001 From: Gabriel Augendre Date: Wed, 14 Jun 2023 08:40:09 +0200 Subject: [PATCH] fix: sleep --- ofx_processor/downloaders/lcl.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/ofx_processor/downloaders/lcl.py b/ofx_processor/downloaders/lcl.py index fd27efe..28b8ba4 100644 --- a/ofx_processor/downloaders/lcl.py +++ b/ofx_processor/downloaders/lcl.py @@ -56,7 +56,7 @@ class LclDownloader: try: self._click(By.CSS_SELECTOR, ".app-cta-button--primary") click.secho("Dismissing welcome screen...", fg="blue") - sleep(2) + time.sleep(2) except NoSuchElementException: click.secho("No welcome screen found.", fg="blue") diff --git a/pyproject.toml b/pyproject.toml index 111c943..bd4749a 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "ofx-processor" -version = "4.4.1" +version = "4.4.2" description = "Personal ofx processor" readme = "README.md" authors = ["Gabriel Augendre "]