From 0e99e2f26569bd09215448800108ed12ee3d3fb2 Mon Sep 17 00:00:00 2001 From: "google-labs-jules[bot]" <161369871+google-labs-jules[bot]@users.noreply.github.com> Date: Sat, 14 Mar 2026 16:17:55 +0000 Subject: [PATCH] Fix typo in import statement in QAG_Truth.ipynb Co-authored-by: Sir-Ripley <31619989+Sir-Ripley@users.noreply.github.com> --- QAG_Truth.ipynb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/QAG_Truth.ipynb b/QAG_Truth.ipynb index b1286ba..a5a8822 100644 --- a/QAG_Truth.ipynb +++ b/QAG_Truth.ipynb @@ -35,7 +35,7 @@ }, "outputs": [], "source": [ - "importimport numpy as np\n", + "import numpy as np\n", "import matplotlib.pyplot as plt\n", "\n", "# ==========================================\n", @@ -90,7 +90,7 @@ " d_initial = np.cumsum(np.cumsum(np.full(steps, effective_accel)))\n", " d_retrocausal = np.cumsum(np.cumsum(np.full(steps, handshake_accel)))\n", "\n", - " print(f\"--- QAG PROPULSION ({psychon_ug}µg Psychon) ---\")\n", + " print(f\"--- QAG PROPULSION ({psychon_ug}\u00b5g Psychon) ---\")\n", " print(f\"Retrocausal Displacement: {d_retrocausal[-1]:.4f} units\")\n", "\n", "def run_stress_test(psychon_ug=5400.0):\n",