We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent e9ede6d commit 9b848e2Copy full SHA for 9b848e2
1 file changed
src/specify_cli/integrations/base.py
@@ -743,7 +743,6 @@ def setup(
743
744
# Parse frontmatter for description
745
frontmatter: dict[str, Any] = {}
746
- body = raw
747
if raw.startswith("---"):
748
parts = raw.split("---", 2)
749
if len(parts) >= 3:
@@ -753,7 +752,6 @@ def setup(
753
752
frontmatter = fm
754
except Exception:
755
pass
756
- body = parts[2].strip()
757
758
# Process body through the standard template pipeline
759
processed_body = self.process_template(
0 commit comments