lamin_cli 0.16.0__py2.py3-none-any.whl → 0.16.1__py2.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.
lamin_cli/__init__.py CHANGED
@@ -1,3 +1,3 @@
1
1
  """Lamin CLI."""
2
2
 
3
- __version__ = "0.16.0"
3
+ __version__ = "0.16.1"
lamin_cli/__main__.py CHANGED
@@ -5,6 +5,7 @@ from collections import OrderedDict
5
5
  import inspect
6
6
  from importlib.metadata import PackageNotFoundError, version
7
7
  from typing import Optional, Mapping
8
+ from functools import wraps
8
9
 
9
10
  # https://github.com/ewels/rich-click/issues/19
10
11
  # Otherwise rich-click takes over the formatting.
@@ -60,12 +61,18 @@ else:
60
61
  ]
61
62
  }
62
63
 
63
- lamin_group_decorator = click.rich_config(
64
- help_config=click.RichHelpConfiguration(
65
- command_groups=COMMAND_GROUPS,
66
- style_commands_table_column_width_ratio=(1, 13),
64
+ def lamin_group_decorator(f):
65
+ @click.rich_config(
66
+ help_config=click.RichHelpConfiguration(
67
+ command_groups=COMMAND_GROUPS,
68
+ style_commands_table_column_width_ratio=(1, 13),
69
+ )
67
70
  )
68
- )(click.group())
71
+ @click.group()
72
+ @wraps(f)
73
+ def wrapper(*args, **kwargs):
74
+ return f(*args, **kwargs)
75
+ return wrapper
69
76
 
70
77
 
71
78
  from click import Command, Context
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: lamin_cli
3
- Version: 0.16.0
3
+ Version: 0.16.1
4
4
  Summary: Lamin CLI.
5
5
  Author-email: Lamin Labs <open-source@lamin.ai>
6
6
  Description-Content-Type: text/markdown
@@ -0,0 +1,10 @@
1
+ lamin_cli/__init__.py,sha256=0yhPWneaCpI0YddQjW0b_76vC9Td3W2SiDUC16eBKlg,41
2
+ lamin_cli/__main__.py,sha256=B2zUf8d7vcoCN-SuEo7dtlJg-waJgYyd-Y--ZZatP2E,7988
3
+ lamin_cli/_cache.py,sha256=WMDUkJyATVdN8pMqgqw1DZLVym-CaBjCHEoRimI69LQ,813
4
+ lamin_cli/_get.py,sha256=MXcR9PTW0FzY3uIPa-50SLCrtuRElxgDB3Vkfo-TFT0,1616
5
+ lamin_cli/_migration.py,sha256=dULOvbpJ4VBiXuxPAM8jFGnBkh7pQGqE5eP-UC6uxWc,1055
6
+ lamin_cli/_save.py,sha256=6mu6sAVcXsq4-XW-tzcVxUVh-Gv7e9EFkTyMmdrCGNw,4291
7
+ lamin_cli-0.16.1.dist-info/entry_points.txt,sha256=Qms85i9cZPlu-U7RnVZhFsF7vJ9gaLZUFkCjcGcXTpg,49
8
+ lamin_cli-0.16.1.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
9
+ lamin_cli-0.16.1.dist-info/METADATA,sha256=svDLkC_KV1xcYGK0H5GCWnQHVLm-h6x4P-NQnmZ6Owk,336
10
+ lamin_cli-0.16.1.dist-info/RECORD,,
@@ -1,10 +0,0 @@
1
- lamin_cli/__init__.py,sha256=ywCiO8sjaEgq6RmyOv4ubgOrE_UIXqs2_mGwLeaJtPU,41
2
- lamin_cli/__main__.py,sha256=kyK2tFuGbk-aR-25sO5Rta_pkzDknBkGyd7ElPYjaNU,7800
3
- lamin_cli/_cache.py,sha256=WMDUkJyATVdN8pMqgqw1DZLVym-CaBjCHEoRimI69LQ,813
4
- lamin_cli/_get.py,sha256=MXcR9PTW0FzY3uIPa-50SLCrtuRElxgDB3Vkfo-TFT0,1616
5
- lamin_cli/_migration.py,sha256=dULOvbpJ4VBiXuxPAM8jFGnBkh7pQGqE5eP-UC6uxWc,1055
6
- lamin_cli/_save.py,sha256=6mu6sAVcXsq4-XW-tzcVxUVh-Gv7e9EFkTyMmdrCGNw,4291
7
- lamin_cli-0.16.0.dist-info/entry_points.txt,sha256=Qms85i9cZPlu-U7RnVZhFsF7vJ9gaLZUFkCjcGcXTpg,49
8
- lamin_cli-0.16.0.dist-info/WHEEL,sha256=Sgu64hAMa6g5FdzHxXv9Xdse9yxpGGMeagVtPMWpJQY,99
9
- lamin_cli-0.16.0.dist-info/METADATA,sha256=HGnHx539zZLJNhpwcH3yO_aVkKtEPjGxI-4BET5Eh6k,336
10
- lamin_cli-0.16.0.dist-info/RECORD,,