minecraft-datapack-language 15.4.13__py3-none-any.whl → 15.4.15__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.
- minecraft_datapack_language/_version.py +2 -2
- minecraft_datapack_language/cli_colors.py +1 -1
- minecraft_datapack_language/cli_help.py +461 -894
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/METADATA +1 -1
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/RECORD +9 -9
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/WHEEL +0 -0
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/entry_points.txt +0 -0
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/licenses/LICENSE +0 -0
- {minecraft_datapack_language-15.4.13.dist-info → minecraft_datapack_language-15.4.15.dist-info}/top_level.txt +0 -0
@@ -28,7 +28,7 @@ version_tuple: VERSION_TUPLE
|
|
28
28
|
commit_id: COMMIT_ID
|
29
29
|
__commit_id__: COMMIT_ID
|
30
30
|
|
31
|
-
__version__ = version = '15.4.
|
32
|
-
__version_tuple__ = version_tuple = (15, 4,
|
31
|
+
__version__ = version = '15.4.15'
|
32
|
+
__version_tuple__ = version_tuple = (15, 4, 15)
|
33
33
|
|
34
34
|
__commit_id__ = commit_id = None
|
@@ -163,7 +163,7 @@ class ColorFormatter:
|
|
163
163
|
|
164
164
|
def code(self, text: str) -> str:
|
165
165
|
"""Format code or technical text."""
|
166
|
-
return self._format(text, Colors.
|
166
|
+
return self._format(text, Colors.BRIGHT_YELLOW, Colors.BG_BLACK)
|
167
167
|
|
168
168
|
def file_path(self, text: str) -> str:
|
169
169
|
"""Format file paths."""
|