healspace 0.2.0__tar.gz → 0.2.1__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.
- {healspace-0.2.0 → healspace-0.2.1}/PKG-INFO +1 -1
- {healspace-0.2.0 → healspace-0.2.1}/healspace/__init__.py +1 -1
- {healspace-0.2.0 → healspace-0.2.1}/healspace/core.py +5 -3
- {healspace-0.2.0 → healspace-0.2.1}/healspace.egg-info/PKG-INFO +1 -1
- {healspace-0.2.0 → healspace-0.2.1}/pyproject.toml +1 -1
- {healspace-0.2.0 → healspace-0.2.1}/README.md +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/healspace/errors.py +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/healspace.egg-info/SOURCES.txt +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/healspace.egg-info/dependency_links.txt +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/healspace.egg-info/requires.txt +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/healspace.egg-info/top_level.txt +0 -0
- {healspace-0.2.0 → healspace-0.2.1}/setup.cfg +0 -0
|
@@ -28,7 +28,7 @@ Or use the standalone guardian (non-Gradio):
|
|
|
28
28
|
from .core import HealSpace, heal, diagnose, fix
|
|
29
29
|
from .errors import KnownError, ErrorReport
|
|
30
30
|
|
|
31
|
-
__version__ = "0.2.
|
|
31
|
+
__version__ = "0.2.1"
|
|
32
32
|
__author__ = "Onyxl · TeraBites"
|
|
33
33
|
__license__ = "Apache 2.0"
|
|
34
34
|
__all__ = ["HealSpace", "heal", "diagnose", "fix", "KnownError", "ErrorReport"]
|
|
@@ -14,7 +14,9 @@ from typing import Optional, List, Callable
|
|
|
14
14
|
from .errors import KnownError, ErrorReport
|
|
15
15
|
|
|
16
16
|
# ── Lineage seal ──────────────────────────────────────────────────────────────
|
|
17
|
-
SEAL
|
|
17
|
+
SEAL = "🛡️ Protected by HealSpace"
|
|
18
|
+
SEAL_URL = "https://pypi.org/project/healspace/"
|
|
19
|
+
SEAL_MD = "🛡️ Protected by HealSpace — [click here to learn more](https://pypi.org/project/healspace/)"
|
|
18
20
|
|
|
19
21
|
# ── Auto-fix actions ──────────────────────────────────────────────────────────
|
|
20
22
|
|
|
@@ -221,7 +223,7 @@ class HealSpace:
|
|
|
221
223
|
for r in reports:
|
|
222
224
|
lines.append(str(r))
|
|
223
225
|
lines.append("")
|
|
224
|
-
lines.append(SEAL)
|
|
226
|
+
lines.append(f"{SEAL} — learn more: {SEAL_URL}")
|
|
225
227
|
return "\n".join(lines)
|
|
226
228
|
|
|
227
229
|
def _trigger_error() -> str:
|
|
@@ -236,7 +238,7 @@ class HealSpace:
|
|
|
236
238
|
heal_btn.click (_run_heal, inputs=log_input, outputs=output_box)
|
|
237
239
|
error_btn.click(_trigger_error, inputs=None, outputs=output_box)
|
|
238
240
|
|
|
239
|
-
gr.Markdown(f"<center><sub>{
|
|
241
|
+
gr.Markdown(f"<center><sub>{SEAL_MD}</sub></center>")
|
|
240
242
|
|
|
241
243
|
return self
|
|
242
244
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|