liminal-orm 4.3.2__py3-none-any.whl → 4.3.3__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.
- liminal/cli/cli.py +2 -3
- {liminal_orm-4.3.2.dist-info → liminal_orm-4.3.3.dist-info}/METADATA +1 -1
- {liminal_orm-4.3.2.dist-info → liminal_orm-4.3.3.dist-info}/RECORD +6 -6
- {liminal_orm-4.3.2.dist-info → liminal_orm-4.3.3.dist-info}/WHEEL +0 -0
- {liminal_orm-4.3.2.dist-info → liminal_orm-4.3.3.dist-info}/entry_points.txt +0 -0
- {liminal_orm-4.3.2.dist-info → liminal_orm-4.3.3.dist-info}/licenses/LICENSE.md +0 -0
liminal/cli/cli.py
CHANGED
@@ -1,9 +1,8 @@
|
|
1
1
|
#!/usr/bin/env python
|
2
2
|
import warnings
|
3
3
|
from pathlib import Path
|
4
|
-
|
4
|
+
from typing import Any
|
5
5
|
import typer
|
6
|
-
from click import Context
|
7
6
|
from rich import print
|
8
7
|
from typer.core import TyperGroup
|
9
8
|
|
@@ -25,7 +24,7 @@ from liminal.migrate.revisions_timeline import RevisionsTimeline
|
|
25
24
|
|
26
25
|
|
27
26
|
class OrderCommands(TyperGroup):
|
28
|
-
def list_commands(self,
|
27
|
+
def list_commands(self, *args: Any) -> list[str]:
|
29
28
|
"""Return list of commands in the order the commands are defined."""
|
30
29
|
return list(self.commands)
|
31
30
|
|
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.4
|
2
2
|
Name: liminal-orm
|
3
|
-
Version: 4.3.
|
3
|
+
Version: 4.3.3
|
4
4
|
Summary: An ORM and toolkit that builds on top of Benchling's platform to keep your schemas and downstream code dependencies in sync.
|
5
5
|
Project-URL: Homepage, https://github.com/dynotx/liminal-orm
|
6
6
|
Project-URL: Repository, https://github.com/dynotx/liminal-orm
|
@@ -15,7 +15,7 @@ liminal/base/str_enum.py,sha256=jF3d-Lo8zsHUe6GsctX2L-TSj92Y3qCYDrTD-saeJoc,210
|
|
15
15
|
liminal/base/properties/base_field_properties.py,sha256=2I3L8mhoxOD1nzEAzwWJzUFemxNYFeAFiIgzvpfyY-M,4704
|
16
16
|
liminal/base/properties/base_name_template.py,sha256=AOtaW4QEDRC-mjZOZk6jgc_mopUMsHS2Fj6VVsO07WY,3150
|
17
17
|
liminal/base/properties/base_schema_properties.py,sha256=jm7dG218gzHITOPdnILY4BUnOCW-KA8yiQjgz5FgQUI,5906
|
18
|
-
liminal/cli/cli.py,sha256=
|
18
|
+
liminal/cli/cli.py,sha256=t1eJ1ogQ3uyXPyrkADawQntwEt6AJK_NGf3YT3A7YsM,14377
|
19
19
|
liminal/cli/controller.py,sha256=2eRP-SDapjDsTYaipxhQyXwBYKtoJcbKNbd4rZCQNlk,11501
|
20
20
|
liminal/cli/live_test_dropdown_migration.py,sha256=XLeFZaR4acLOQ6LmTMWjZHIIUnB6ysZMUu6kaSRcQiA,2913
|
21
21
|
liminal/cli/live_test_entity_schema_migration.py,sha256=N3A_GALm3ITP3Vej_gXtCdW7OTIlsrPM9BezUzhPP64,5523
|
@@ -77,8 +77,8 @@ liminal/tests/test_entity_schema_compare.py,sha256=asKDU4uO1PFdWCKU-78xqSzNN90L6
|
|
77
77
|
liminal/unit_dictionary/utils.py,sha256=o3K06Yyt33iIUSMHPT8f1vSuUSgWjZLf51p78lx4SZs,1817
|
78
78
|
liminal/validation/__init__.py,sha256=NsjzmivSRwGki1k9ykJgjtcYNcILR_PHSf6RkI1w2n0,5290
|
79
79
|
liminal/validation/validation_severity.py,sha256=ib03PTZCQHcbBDc01v4gJF53YtA-ANY6QSFnhTV-FbU,259
|
80
|
-
liminal_orm-4.3.
|
81
|
-
liminal_orm-4.3.
|
82
|
-
liminal_orm-4.3.
|
83
|
-
liminal_orm-4.3.
|
84
|
-
liminal_orm-4.3.
|
80
|
+
liminal_orm-4.3.3.dist-info/METADATA,sha256=KRue2Ed47vM9kOWbFGho65EdxGu99Q-FFfu8Y7zSo5Y,10733
|
81
|
+
liminal_orm-4.3.3.dist-info/WHEEL,sha256=qtCwoSJWgHk21S1Kb4ihdzI2rlJ1ZKaIurTj_ngOhyQ,87
|
82
|
+
liminal_orm-4.3.3.dist-info/entry_points.txt,sha256=M9yndBmBWcZvlHQpZc1sEp-rRTXjsLFiz-pnsI4jy0g,48
|
83
|
+
liminal_orm-4.3.3.dist-info/licenses/LICENSE.md,sha256=oVA877F_D1AV44dpjsv4f-4k690uNGApX1EtzOo3T8U,11353
|
84
|
+
liminal_orm-4.3.3.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|