From b44442175b755a3dabe58f9cde6f0540bc5854c6 Mon Sep 17 00:00:00 2001 From: Jeff Moe Date: Thu, 8 Sep 2022 11:20:05 -0600 Subject: [PATCH] Fix test.fits path --- process_new.ipynb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/process_new.ipynb b/process_new.ipynb index c30756c..266deba 100644 --- a/process_new.ipynb +++ b/process_new.ipynb @@ -163,7 +163,7 @@ " # Loop over files\n", " for fname in fnames:\n", " # Create reference calibration file in single threaded environment\n", - " calfname = os.path.join(\"test.fits\")\n", + " calfname = os.path.join(file_dir, \"test.fits\")\n", "\n", " if not os.path.exists(calfname):\n", " solved = False\n",