Skip to content

Commit

Permalink
bug fix in environ passed parameter
Browse files Browse the repository at this point in the history
  • Loading branch information
jsdillon committed Aug 27, 2024
1 parent 0c61f3f commit a905b26
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion notebooks/full_day_antenna_flagging.ipynb
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
"AUTO_SHAPE_MAX_FLAG_FRAC = float(os.environ.get(\"AUTO_SHAPE_MAX_FLAG_FRAC\", .25))\n",
"AUTO_SLOPE_MAX_FLAG_FRAC = float(os.environ.get(\"AUTO_SLOPE_MAX_FLAG_FRAC\", .25))\n",
"AUTO_RFI_MAX_FLAG_FRAC = float(os.environ.get(\"AUTO_RFI_MAX_FLAG_FRAC\", .25))\n",
"CHISQ_MAX_FLAG_FRAC = float(os.environ.get(\"AUTO_RFI_MAX_FLAG_FRAC\", .5))\n",
"CHISQ_MAX_FLAG_FRAC = float(os.environ.get(\"CHISQ_MAX_FLAG_FRAC\", .5))\n",
"OVERALL_MAX_FLAG_FRAC = float(os.environ.get(\"OVERALL_MAX_FLAG_FRAC\", .5))\n",
"\n",
"for setting in ['SUM_FILE', 'SUM_SUFFIX', 'CAL_SUFFIX', 'ANT_CLASS_SUFFIX', 'OUT_FLAG_SUFFIX', 'APRIORI_YAML_PATH',\n",
Expand Down

0 comments on commit a905b26

Please sign in to comment.