fix: sleep

This commit is contained in:
Gabriel Augendre 2023-06-14 08:40:09 +02:00
parent 3290134835
commit 14499eab65
2 changed files with 2 additions and 2 deletions

View file

@ -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")

View file

@ -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 <gabriel@augendre.info>"]