pymiele 0.5.0__py3-none-any.whl → 0.5.1__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.
- pymiele/code_enum.py +2 -2
- pymiele/const.py +1 -1
- {pymiele-0.5.0.dist-info → pymiele-0.5.1.dist-info}/METADATA +1 -1
- pymiele-0.5.1.dist-info/RECORD +11 -0
- pymiele-0.5.0.dist-info/RECORD +0 -11
- {pymiele-0.5.0.dist-info → pymiele-0.5.1.dist-info}/WHEEL +0 -0
- {pymiele-0.5.0.dist-info → pymiele-0.5.1.dist-info}/licenses/LICENSE +0 -0
- {pymiele-0.5.0.dist-info → pymiele-0.5.1.dist-info}/top_level.txt +0 -0
pymiele/code_enum.py
CHANGED
@@ -39,12 +39,12 @@ class MieleEnum(IntEnum):
|
|
39
39
|
@classmethod
|
40
40
|
def as_dict(cls) -> dict[str, int]:
|
41
41
|
"""Return a dict of enum names and values."""
|
42
|
-
return {i.name: i.value for i in cls if i.name != "
|
42
|
+
return {i.name: i.value for i in cls if i.name != "missing"}
|
43
43
|
|
44
44
|
@classmethod
|
45
45
|
def as_enum_dict(cls) -> dict[int, Any]:
|
46
46
|
"""Return a dict of enum values and enum names."""
|
47
|
-
return {i.value: i for i in cls if i.name != "
|
47
|
+
return {i.value: i for i in cls if i.name != "missing"}
|
48
48
|
|
49
49
|
@classmethod
|
50
50
|
def values(cls) -> list[int]:
|
pymiele/const.py
CHANGED
@@ -0,0 +1,11 @@
|
|
1
|
+
pymiele/__init__.py,sha256=yaR_pvVA5HfAxQ9oHCk8CsoHfEkskdZLmxbY1QgrMBE,260
|
2
|
+
pymiele/code_enum.py,sha256=w-meA0nIdhqqqg_qPDXB9ksFhAkz6mjim7SwHhZJTl0,1829
|
3
|
+
pymiele/const.py,sha256=B-ityORYZEBbwF6kEZueOC-pBXcLOt9Frn5Un586QIE,237
|
4
|
+
pymiele/model.py,sha256=oMf8CVnCrbrzvs66mVXNjilDolkRQV4UedtEVoOrD8A,21726
|
5
|
+
pymiele/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
+
pymiele/pymiele.py,sha256=yGL4rekRPGzwXziZ5ydVrsEN-XPN110dmuWygbXF148,9405
|
7
|
+
pymiele-0.5.1.dist-info/licenses/LICENSE,sha256=scGm4_U2pd-rsGa6Edf6zsXFebrMT4RoyQz7-904_Wg,1072
|
8
|
+
pymiele-0.5.1.dist-info/METADATA,sha256=XlsB6119QcBVnrdIpicz73bOKuMXmHEiFqC0yZ5JVXo,747
|
9
|
+
pymiele-0.5.1.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
10
|
+
pymiele-0.5.1.dist-info/top_level.txt,sha256=BwkHrSO2w_Bfxh6s8Ikcao5enEuQOpQhJ3SwUXBqY10,8
|
11
|
+
pymiele-0.5.1.dist-info/RECORD,,
|
pymiele-0.5.0.dist-info/RECORD
DELETED
@@ -1,11 +0,0 @@
|
|
1
|
-
pymiele/__init__.py,sha256=yaR_pvVA5HfAxQ9oHCk8CsoHfEkskdZLmxbY1QgrMBE,260
|
2
|
-
pymiele/code_enum.py,sha256=q8EfNM06JtNSq2Viv5E2p3MHPEqr3-AjyfMvHzwpcm0,1839
|
3
|
-
pymiele/const.py,sha256=JtfE0YP3ID7hGIEiQ87OwWf8SP-a0f8MAaP7ufwAKec,237
|
4
|
-
pymiele/model.py,sha256=oMf8CVnCrbrzvs66mVXNjilDolkRQV4UedtEVoOrD8A,21726
|
5
|
-
pymiele/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
|
-
pymiele/pymiele.py,sha256=yGL4rekRPGzwXziZ5ydVrsEN-XPN110dmuWygbXF148,9405
|
7
|
-
pymiele-0.5.0.dist-info/licenses/LICENSE,sha256=scGm4_U2pd-rsGa6Edf6zsXFebrMT4RoyQz7-904_Wg,1072
|
8
|
-
pymiele-0.5.0.dist-info/METADATA,sha256=NbjjhacKJz9QI5kkZEn4NsQQZ1lNLJpvByv-bACBg1Y,747
|
9
|
-
pymiele-0.5.0.dist-info/WHEEL,sha256=DnLRTWE75wApRYVsjgc6wsVswC54sMSJhAEd4xhDpBk,91
|
10
|
-
pymiele-0.5.0.dist-info/top_level.txt,sha256=BwkHrSO2w_Bfxh6s8Ikcao5enEuQOpQhJ3SwUXBqY10,8
|
11
|
-
pymiele-0.5.0.dist-info/RECORD,,
|
File without changes
|
File without changes
|
File without changes
|