zrb 1.6.4__py3-none-any.whl → 1.6.5__py3-none-any.whl

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.
zrb/runner/cli.py CHANGED
@@ -24,11 +24,20 @@ from zrb.util.string.conversion import double_quote
24
24
 
25
25
  class Cli(Group):
26
26
 
27
+ def __init__(self):
28
+ super().__init__(name="_zrb")
29
+
30
+ @property
31
+ def name(self):
32
+ return CFG.ROOT_GROUP_NAME
33
+
34
+ @property
35
+ def description(self):
36
+ return CFG.ROOT_GROUP_DESCRIPTION
37
+
27
38
  @property
28
39
  def banner(self) -> str:
29
- if self._banner is None:
30
- return CFG.BANNER
31
- return self._banner
40
+ return CFG.BANNER
32
41
 
33
42
  def run(self, args: list[str] = []):
34
43
  kwargs, args = self._extract_kwargs_from_args(args)
@@ -154,7 +163,7 @@ class Cli(Group):
154
163
  return kwargs, residual_args
155
164
 
156
165
 
157
- cli = Cli(name=CFG.ROOT_GROUP_NAME, description=CFG.ROOT_GROUP_DESCRIPTION)
166
+ cli = Cli()
158
167
 
159
168
 
160
169
  @make_task(
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: zrb
3
- Version: 1.6.4
3
+ Version: 1.6.5
4
4
  Summary: Your Automation Powerhouse
5
5
  Home-page: https://github.com/state-alchemists/zrb
6
6
  License: AGPL-3.0-or-later
@@ -247,7 +247,7 @@ zrb/input/str_input.py,sha256=NevZHX9rf1g8eMatPyy-kUX3DglrVAQpzvVpKAzf7bA,81
247
247
  zrb/input/text_input.py,sha256=6T3MngWdUs0u0ZVs5Dl11w5KS7nN1RkgrIR_zKumzPM,3695
248
248
  zrb/llm_config.py,sha256=TAGha1PAiS-vvxM3UyAlIK_0mh3qe5clOfRKbQhGUF8,9477
249
249
  zrb/runner/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
250
- zrb/runner/cli.py,sha256=AnMGS1sVRXyAc4dIjDanNrTOk5JQXU45xz8nC7oUZX0,6847
250
+ zrb/runner/cli.py,sha256=QDsK98t9dXoaG8A7XFwxFg5jjYaiCyimwThc5zhZ4Vo,6935
251
251
  zrb/runner/common_util.py,sha256=JDMcwvQ8cxnv9kQrAoKVLA40Q1omfv-u5_d5MvvwHeE,1373
252
252
  zrb/runner/web_app.py,sha256=huY9SCvMC9akhEQDW6mUC0osr0b0H3EosD7GFClVt-A,2612
253
253
  zrb/runner/web_config/config.py,sha256=0wR58KreAmawGGfamm0GLZY344HaXs7qfDgHLavBDwo,3125
@@ -369,7 +369,7 @@ zrb/util/string/name.py,sha256=SXEfxJ1-tDOzHqmSV8kvepRVyMqs2XdV_vyoh_9XUu0,1584
369
369
  zrb/util/todo.py,sha256=VGISej2KQZERpornK-8X7bysp4JydMrMUTnG8B0-liI,20708
370
370
  zrb/xcom/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
371
371
  zrb/xcom/xcom.py,sha256=o79rxR9wphnShrcIushA0Qt71d_p3ZTxjNf7x9hJB78,1571
372
- zrb-1.6.4.dist-info/METADATA,sha256=3bWvvTgCPxLrQNsKrX83QOuDl6K-xS_gY-Rk7mbtEQU,8385
373
- zrb-1.6.4.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
374
- zrb-1.6.4.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
375
- zrb-1.6.4.dist-info/RECORD,,
372
+ zrb-1.6.5.dist-info/METADATA,sha256=latmSfH5rGkN1XC7-Dw0guVWBExeQH8QcSjrzsJBsGw,8385
373
+ zrb-1.6.5.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
374
+ zrb-1.6.5.dist-info/entry_points.txt,sha256=-Pg3ElWPfnaSM-XvXqCxEAa-wfVI6BEgcs386s8C8v8,46
375
+ zrb-1.6.5.dist-info/RECORD,,
File without changes