tui-utilities 1.0.12__tar.gz → 1.0.14__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tui_utilities
3
- Version: 1.0.12
3
+ Version: 1.0.14
4
4
  Summary: Personal-use console utilities library
5
5
  Author-email: Guido Iván Gross <grossguidoivan@gmail.com>
6
6
  License: MIT
@@ -1,6 +1,6 @@
1
1
  [project]
2
2
  name = "tui_utilities"
3
- version = "1.0.12"
3
+ version = "1.0.14"
4
4
  description = "Personal-use console utilities library"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -119,6 +119,7 @@ def print(
119
119
  left_padding = left_padding,
120
120
  plain_text = plain_text
121
121
  ))
122
+ elif isinstance(object, RenderableType): renderables.append(object)
122
123
  else:
123
124
  renderables.append(_style(
124
125
  text = str(object),
@@ -173,8 +174,7 @@ def wait_for_key(
173
174
  top_padding = None,
174
175
  right_padding = None,
175
176
  bottom_padding = None,
176
- left_padding = None,
177
- plain_text = False
177
+ left_padding = None
178
178
  ):
179
179
  print(
180
180
  text,
@@ -190,6 +190,6 @@ def wait_for_key(
190
190
  right_padding = right_padding,
191
191
  bottom_padding = bottom_padding,
192
192
  left_padding = left_padding,
193
- plain_text = plain_text
193
+ end = ""
194
194
  )
195
195
  readchar.readkey()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tui_utilities
3
- Version: 1.0.12
3
+ Version: 1.0.14
4
4
  Summary: Personal-use console utilities library
5
5
  Author-email: Guido Iván Gross <grossguidoivan@gmail.com>
6
6
  License: MIT
File without changes
File without changes