From 95d8b9298728d437a19f8bacf28ec24ff2a51368 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Peter=20V=C3=BDboch?= <47027005+petereon@users.noreply.github.com> Date: Fri, 23 Aug 2024 12:57:37 +0200 Subject: [PATCH] fix: setting transient as default (#109) --- beaupy/_beaupy.py | 2 +- pyproject.toml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/beaupy/_beaupy.py b/beaupy/_beaupy.py index 2be1753..e86c76b 100755 --- a/beaupy/_beaupy.py +++ b/beaupy/_beaupy.py @@ -84,7 +84,7 @@ class Config: raise_on_interrupt: bool = False raise_on_escape: bool = False - transient: bool = False + transient: bool = True _navigation_keys = [DefaultKeys.up, DefaultKeys.down, DefaultKeys.right, DefaultKeys.left, DefaultKeys.home, DefaultKeys.end] diff --git a/pyproject.toml b/pyproject.toml index 84e5560..9f9a873 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = 'beaupy' -version = '3.9.1' +version = '3.9.2' description = 'A library of elements for interactive TUIs in Python' authors = ['Peter Vyboch '] license = 'MIT'