tui-utilities 1.1.6__tar.gz → 1.1.7__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.

Potentially problematic release.


This version of tui-utilities might be problematic. Click here for more details.

@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tui_utilities
3
- Version: 1.1.6
3
+ Version: 1.1.7
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.1.6"
3
+ version = "1.1.7"
4
4
  description = "Personal-use console utilities library"
5
5
  readme = "README.md"
6
6
  license = {text = "MIT"}
@@ -20,8 +20,7 @@ def _style(
20
20
  top_padding = None,
21
21
  right_padding = None,
22
22
  bottom_padding = None,
23
- left_padding = None,
24
- plain_text = False
23
+ left_padding = None
25
24
  ):
26
25
  def apply_text_styles(object):
27
26
  styleable = Text()
@@ -110,7 +109,6 @@ def print(
110
109
  left_padding = None,
111
110
  separator = " ",
112
111
  end = "\n",
113
- plain_text = False,
114
112
  **kwargs
115
113
  ):
116
114
  renderables = []
@@ -128,8 +126,7 @@ def print(
128
126
  top_padding = top_padding,
129
127
  right_padding = right_padding,
130
128
  bottom_padding = bottom_padding,
131
- left_padding = left_padding,
132
- plain_text = plain_text
129
+ left_padding = left_padding
133
130
  ))
134
131
  _console.print(*renderables, sep = separator, end = end, **kwargs)
135
132
 
@@ -149,8 +146,7 @@ def input(
149
146
  italic = italic,
150
147
  underline = underline,
151
148
  strike = strike,
152
- reverse = reverse,
153
- plain_text = True
149
+ reverse = reverse
154
150
  )).strip()
155
151
 
156
152
  def clear_console(): os.system("cls")
@@ -168,8 +164,7 @@ def wait_for_key(
168
164
  top_padding = None,
169
165
  right_padding = None,
170
166
  bottom_padding = None,
171
- left_padding = None,
172
- plain_text = True
167
+ left_padding = None
173
168
  ):
174
169
  print(
175
170
  f"\n{text}",
@@ -185,7 +180,6 @@ def wait_for_key(
185
180
  right_padding = right_padding,
186
181
  bottom_padding = bottom_padding,
187
182
  left_padding = left_padding,
188
- end = "",
189
- plain_text = plain_text
183
+ end = ""
190
184
  )
191
185
  readchar.readkey()
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: tui_utilities
3
- Version: 1.1.6
3
+ Version: 1.1.7
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