rgwfuncs 0.0.107__tar.gz → 0.0.108__tar.gz
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.
- {rgwfuncs-0.0.107/src/rgwfuncs.egg-info → rgwfuncs-0.0.108}/PKG-INFO +1 -1
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/pyproject.toml +1 -1
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/setup.cfg +1 -1
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs/str_lib.py +1 -1
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108/src/rgwfuncs.egg-info}/PKG-INFO +1 -1
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/LICENSE +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/README.md +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs/__init__.py +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs/df_lib.py +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs/docs_lib.py +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs/interactive_shell_lib.py +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs.egg-info/SOURCES.txt +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs.egg-info/dependency_links.txt +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs.egg-info/entry_points.txt +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs.egg-info/requires.txt +0 -0
- {rgwfuncs-0.0.107 → rgwfuncs-0.0.108}/src/rgwfuncs.egg-info/top_level.txt +0 -0
@@ -254,7 +254,7 @@ def sub_heading(text: str, typing_speed: float = 0.002) -> None:
|
|
254
254
|
# Format sub-heading
|
255
255
|
prefix = f"[{_CURRENT_HEADING_NUMBER}.{current_sub}] "
|
256
256
|
max_text_length = 50 - len(prefix)
|
257
|
-
formatted_text = text.lower()
|
257
|
+
formatted_text = text[:max_text_length] # Removed .lower()
|
258
258
|
sub_heading = f"{prefix}{formatted_text}"
|
259
259
|
|
260
260
|
# Get timestamp
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|
File without changes
|