Skip to content

Commit 9b848e2

Browse files
committed
fix: remove unused variable flagged by ruff (F841)
1 parent e9ede6d commit 9b848e2

1 file changed

Lines changed: 0 additions & 2 deletions

File tree

  • src/specify_cli/integrations

src/specify_cli/integrations/base.py

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -743,7 +743,6 @@ def setup(
743743

744744
# Parse frontmatter for description
745745
frontmatter: dict[str, Any] = {}
746-
body = raw
747746
if raw.startswith("---"):
748747
parts = raw.split("---", 2)
749748
if len(parts) >= 3:
@@ -753,7 +752,6 @@ def setup(
753752
frontmatter = fm
754753
except Exception:
755754
pass
756-
body = parts[2].strip()
757755

758756
# Process body through the standard template pipeline
759757
processed_body = self.process_template(

0 commit comments

Comments
 (0)